102 lines
1.6 KiB
CSS
102 lines
1.6 KiB
CSS
|
|
.contact-section {
|
|
padding: 2rem 2rem 4rem;
|
|
}
|
|
|
|
.contact-form {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
background: #fff;
|
|
padding: 2rem;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.form-grid {
|
|
display: grid;
|
|
grid-template-columns: 200px 1fr;
|
|
gap: 1.5rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.form-label {
|
|
padding-top: 0.5rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.form-input {
|
|
width: 100%;
|
|
padding: 0.5rem;
|
|
border: 1px solid #d1d5db;
|
|
border-radius: 4px;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
textarea.form-input {
|
|
min-height: 120px;
|
|
}
|
|
|
|
.marketing-consent {
|
|
margin: 2rem 0;
|
|
padding-left: 200px;
|
|
}
|
|
|
|
.container.recaptcha {
|
|
margin-left: 15vw;
|
|
}
|
|
|
|
input[type="submit"] {
|
|
margin-left: 40%;
|
|
padding: 0.75rem 1.5rem;
|
|
background: #2563eb;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
input[type="submit"]:hover {
|
|
background: #1d4ed8;
|
|
}
|
|
|
|
.data-notice {
|
|
margin-top: 3rem;
|
|
padding: 1.5rem;
|
|
background: #f3f4f6;
|
|
border-radius: 4px;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.data-notice h3 {
|
|
margin-bottom: 1rem;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.form-grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.form-label {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.marketing-consent {
|
|
padding-left: 0;
|
|
}
|
|
|
|
.submit-button {
|
|
margin-left: 0;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 400px) {
|
|
.container.recaptcha {
|
|
margin-left: -12vw;
|
|
}
|
|
}
|
|
|
|
/*# sourceMappingURL=core_contact.bundle.css.map*/ |