62 lines
908 B
SCSS
62 lines
908 B
SCSS
@import "~bootstrap/scss/bootstrap";
|
|
|
|
$dimmed_white: #f5f5f5;
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
background-color: $dimmed_white;
|
|
}
|
|
|
|
body.idp {
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
|
|
.error-message, body.idp {
|
|
padding-top: 40px;
|
|
padding-bottom: 40px;
|
|
}
|
|
|
|
.form-signin {
|
|
max-width: 330px;
|
|
}
|
|
|
|
.form-consent {
|
|
max-width: 550px;
|
|
}
|
|
|
|
.form-signin, .form-consent {
|
|
width: 100%;
|
|
padding: 15px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
|
|
.checkbox {
|
|
font-weight: 400;
|
|
}
|
|
|
|
.form-control {
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
height: auto;
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.form-control:focus {
|
|
z-index: 2;
|
|
}
|
|
|
|
.input[type="email"] {
|
|
margin-bottom: -1px;
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
|
|
.input[type="password"] {
|
|
margin-bottom: 10px;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
}
|