70 lines
1.4 KiB
CSS
70 lines
1.4 KiB
CSS
/* Custom Styles */
|
|
body {
|
|
font-family: 'Poppins', sans-serif;
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
.hero-section {
|
|
background: url('https://images.pexels.com/photos/4239031/pexels-photo-4239031.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center;
|
|
background-size: cover;
|
|
position: relative;
|
|
color: white;
|
|
padding: 100px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-section::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: linear-gradient(45deg, rgba(0, 123, 255, 0.8), rgba(40, 167, 69, 0.8));
|
|
}
|
|
|
|
.hero-section .container {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.search-card {
|
|
background-color: #FFFFFF;
|
|
padding: 2rem;
|
|
border-radius: 0.75rem;
|
|
box-shadow: 0 8px 30px rgba(0,0,0,0.1);
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #007BFF;
|
|
border-color: #007BFF;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 0.5rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #0056b3;
|
|
border-color: #0056b3;
|
|
}
|
|
|
|
.how-it-works {
|
|
padding: 80px 0;
|
|
}
|
|
|
|
.step-icon {
|
|
font-size: 3rem;
|
|
color: #007BFF;
|
|
}
|
|
|
|
/* Auth pages styling */
|
|
.choice-card {
|
|
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
}
|
|
|
|
.choice-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 12px 40px rgba(0,0,0,0.12) !important;
|
|
}
|