26 lines
456 B
CSS
26 lines
456 B
CSS
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.login-container {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.login-card {
|
|
max-width: 450px;
|
|
width: 100%;
|
|
padding: 2rem;
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.navbar-brand-logo {
|
|
font-weight: 700;
|
|
color: #0D6EFD; /* Bootstrap Primary */
|
|
}
|