52 lines
829 B
CSS
52 lines
829 B
CSS
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.hero-section {
|
|
padding: 4rem 0;
|
|
background: linear-gradient(45deg, #0D6EFD, #4D8BFD);
|
|
color: white;
|
|
}
|
|
|
|
.hero-section h1 {
|
|
font-weight: 700;
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.hero-section p {
|
|
font-size: 1.1rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.login-section {
|
|
padding: 4rem 0;
|
|
}
|
|
|
|
.login-card {
|
|
border: none;
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.card-title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #0D6EFD;
|
|
border-color: #0D6EFD;
|
|
}
|
|
|
|
.footer {
|
|
padding: 2rem 0;
|
|
background-color: #FFFFFF;
|
|
border-top: 1px solid #DEE2E6;
|
|
font-size: 0.9rem;
|
|
color: #6C757D;
|
|
}
|