40 lines
632 B
CSS
40 lines
632 B
CSS
form {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
input {
|
|
font-size: 1em;
|
|
margin: 1em;
|
|
padding: 0.25em;
|
|
}
|
|
|
|
.invalid_password {
|
|
color: var(--adming-yellow-color);
|
|
font-size: 1.125em;
|
|
margin-bottom: 0.25em;
|
|
margin-top: 0.25em;
|
|
text-align: center;
|
|
}
|
|
|
|
.login_title {
|
|
font-size: 2em;
|
|
margin: 0.75em;
|
|
text-align: center;
|
|
}
|
|
|
|
.password_field {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
}
|
|
|
|
#login_input_button {
|
|
cursor: pointer;
|
|
border-radius: 1em;
|
|
padding: 0.25em;
|
|
}
|