29 lines
424 B
CSS
29 lines
424 B
CSS
#c_auth_login {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
}
|
|
|
|
#c_auth_login__form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
#c_auth_login__error {
|
|
color: red;
|
|
margin: 1rem auto;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
text-align: center;
|
|
}
|
|
|
|
.c_auth_login__links {
|
|
margin: 1rem auto;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
text-align: center;
|
|
}
|