77 lines
1.4 KiB
CSS
77 lines
1.4 KiB
CSS
.admin-login-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 50px;
|
|
|
|
width: 100%;
|
|
height: 50vh;
|
|
}
|
|
.admin-login-title {
|
|
font-size: 32px;
|
|
font-family: Source Sans Pro;
|
|
font-weight: 900;
|
|
}
|
|
.admin-login-form-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 25px;
|
|
|
|
width: 400px;
|
|
}
|
|
.admin-login-form-textfield-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: start;
|
|
gap: 4px;
|
|
|
|
width: 100%;
|
|
}
|
|
.admin-login-form-textfield-label {
|
|
font-family: Space Grotesk;
|
|
font-size: 16px;
|
|
font-weight: 900;
|
|
letter-spacing: 0.1rem;
|
|
text-transform: uppercase;
|
|
}
|
|
.admin-login-form-textfield-label:after {
|
|
color: #e32;
|
|
content: '*';
|
|
display: inline;
|
|
}
|
|
.admin-login-form-textfield {
|
|
height: 50px;
|
|
background-color: white;
|
|
border: solid 0.5px #d8d8d8;
|
|
|
|
width: 100%;
|
|
text-indent: 10px;
|
|
}
|
|
.admin-login-form-button {
|
|
height: 60px;
|
|
width: 400px;
|
|
margin-top: 20px;
|
|
|
|
background-color: #02114A;
|
|
color: white;
|
|
border-radius: 5px;
|
|
|
|
font-family: Space Grotesk;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.admin-login-form-button:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.admin-login-form-error-message {
|
|
font-size: 18px;
|
|
color: #e32;
|
|
} |