38 lines
591 B
CSS
38 lines
591 B
CSS
/* Login page specific styles */
|
|
.login-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.login-container {
|
|
flex: 1;
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
.login-branding {
|
|
flex: 1;
|
|
}
|
|
|
|
.login-form-wrapper {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.login-form-container {
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.login-footer {
|
|
padding: 1rem;
|
|
text-align: center;
|
|
background-color: #f8f9fa;
|
|
border-top: 1px solid #dee2e6;
|
|
} |