assettrack/static/css/login.css
candifloss 4ef6aafd3d Fix: Footer
- Add footer in login page
- Re-style footer
- Add `login.css`
2025-04-12 15:14:16 +05:30

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;
}