105 lines
1.9 KiB
CSS
105 lines
1.9 KiB
CSS
:root {
|
|
--primary-blue: #0066CC;
|
|
--secondary-green: #005A4A;
|
|
--light-gray: #f8f9fa;
|
|
--dark-gray: #343A40;
|
|
--font-headings: 'Poppins', sans-serif;
|
|
--font-body: 'Lato', sans-serif;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-body);
|
|
color: var(--dark-gray);
|
|
background-color: #fff;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: var(--font-headings);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero-section {
|
|
background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
|
|
padding: 6rem 0;
|
|
color: white;
|
|
}
|
|
|
|
.hero-logo {
|
|
max-width: 150px;
|
|
background: white;
|
|
border-radius: 15px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.hero-title {
|
|
font-size: 3.5rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.25rem;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.section-title {
|
|
color: var(--primary-blue);
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.section-subtitle {
|
|
font-size: 1.1rem;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.contact-info {
|
|
margin-top: 2rem;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.contact-info p {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.form-container {
|
|
background-color: #ffffff;
|
|
padding: 2.5rem;
|
|
border-radius: 15px;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.form-control {
|
|
padding: 1rem;
|
|
border-radius: 8px;
|
|
border: 1px solid #ced4da;
|
|
}
|
|
|
|
.form-control:focus {
|
|
border-color: var(--primary-blue);
|
|
box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: var(--primary-blue);
|
|
border-color: var(--primary-blue);
|
|
padding: 1rem;
|
|
font-weight: 700;
|
|
font-family: var(--font-headings);
|
|
border-radius: 8px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #0056b3;
|
|
border-color: #0056b3;
|
|
}
|
|
|
|
.alert-success {
|
|
background-color: var(--secondary-green);
|
|
color: white;
|
|
border-color: var(--secondary-green);
|
|
}
|
|
|
|
.btn-close {
|
|
filter: invert(1) grayscale(100%) brightness(200%);
|
|
} |