54 lines
877 B
CSS
54 lines
877 B
CSS
.login-page {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: var(--mud-palette-surface);
|
|
}
|
|
|
|
.container-top-logo > .logo {
|
|
width: 50%;
|
|
}
|
|
|
|
.container-login > span {
|
|
font-size: large;
|
|
font-weight: 900;
|
|
text-align: center;
|
|
}
|
|
|
|
.container-top-logo {
|
|
height: 35vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 10;
|
|
}
|
|
|
|
.login-form-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.container-login {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 4px 16px 16px;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.login-footer {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.login-footer span {
|
|
font-size: 9px;
|
|
color: var(--mud-palette-gray-darker);
|
|
}
|
|
|
|
.login-footer img {
|
|
height: 15px;
|
|
margin-left: 4px;
|
|
} |