35665-vm/assets/css/custom.css
2025-11-12 14:35:45 +00:00

79 lines
1.3 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #F8F9FA;
}
.navbar-brand img {
max-height: 40px;
}
.hero-section {
background: linear-gradient(135deg, #0d6efd, #0a58ca);
color: white;
padding: 100px 0;
text-align: center;
}
.hero-section h1 {
font-weight: 700;
font-size: 3.5rem;
}
.hero-section p {
font-size: 1.25rem;
font-weight: 300;
}
.btn-gradient {
background: linear-gradient(135deg, #1a7eff, #0d6efd);
border: none;
transition: transform 0.2s;
}
.btn-gradient:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.features-section {
padding: 80px 0;
}
.feature-icon {
font-size: 3rem;
color: #0D6EFD;
}
.footer {
background-color: #343A40;
color: white;
padding: 40px 0;
}
.login-container {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.login-card {
border: none;
border-radius: 0.75rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.login-card .card-header {
background-color: transparent;
border-bottom: none;
text-align: center;
padding-top: 2rem;
}
.login-card .card-header img {
max-height: 60px;
margin-bottom: 1rem;
}