62 lines
1.1 KiB
CSS
62 lines
1.1 KiB
CSS
|
|
/* General Body Styles */
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #f8f9fa;
|
|
color: #343a40;
|
|
}
|
|
|
|
/* Typography */
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Playfair Display', serif;
|
|
font-weight: 700;
|
|
}
|
|
|
|
/* Buttons */
|
|
.btn-primary {
|
|
background-image: linear-gradient(45deg, #007bff, #0056b3);
|
|
border: none;
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/* Cards */
|
|
.card {
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
/* Header */
|
|
.hero {
|
|
background: url('https://picsum.photos/1600/400') no-repeat center center;
|
|
background-size: cover;
|
|
color: white;
|
|
padding: 4rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3.5rem;
|
|
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
/* Form */
|
|
.form-container {
|
|
background: white;
|
|
padding: 2rem;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/* Toast Notifications */
|
|
.toast-container {
|
|
position: fixed;
|
|
top: 1rem;
|
|
right: 1rem;
|
|
z-index: 1050;
|
|
}
|