48 lines
715 B
CSS
48 lines
715 B
CSS
.login {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: stretch;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.login__form {
|
|
margin: auto;
|
|
padding: 40px 15px 100px;
|
|
width: 100%;
|
|
max-width: 24rem;
|
|
}
|
|
|
|
.login__info {
|
|
position: relative;
|
|
text-align: center;
|
|
}
|
|
|
|
.login__message,
|
|
.login__link {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
@media screen and (min-width: 992px) {
|
|
.login__message {
|
|
position: absolute;
|
|
top: 40px;
|
|
padding: 0 15px;
|
|
}
|
|
}
|
|
|
|
.form__group {
|
|
position: relative;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.form__message {
|
|
font-size: 11px;
|
|
}
|
|
|
|
.form__message--error {
|
|
color: var(--red);
|
|
}
|