125 lines
2.0 KiB
CSS
125 lines
2.0 KiB
CSS
.contact-container {
|
|
max-width: 800px;
|
|
margin: 2rem auto;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.contact-title {
|
|
margin-top: 70px;
|
|
padding-top: 2rem;
|
|
text-align: center;
|
|
margin-bottom: 2rem;
|
|
font-size: 2.5rem;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.contact-form {
|
|
background-color: rgba(33, 59, 40, 0.05);
|
|
padding: 2rem;
|
|
border-radius: 8px;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
font-weight: bold;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.form-group input,
|
|
.form-group textarea {
|
|
width: 100%;
|
|
padding: 0.75rem;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
font-family: inherit;
|
|
font-size: 1rem;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.form-group textarea {
|
|
resize: vertical;
|
|
}
|
|
|
|
.form-group input:focus,
|
|
.form-group textarea:focus {
|
|
outline: none;
|
|
border-color: #213b28;
|
|
box-shadow: 0 0 0 2px rgba(33, 59, 40, 0.2);
|
|
}
|
|
|
|
.submit-button {
|
|
background-color: #213b28;
|
|
color: white;
|
|
border: none;
|
|
padding: 0.75rem 1.5rem;
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.submit-button:hover {
|
|
background-color: #2a4c35;
|
|
}
|
|
|
|
.whatsapp-container {
|
|
text-align: center;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.whatsapp-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
background-color: #25D366;
|
|
color: white;
|
|
text-decoration: none;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 4px;
|
|
font-weight: bold;
|
|
transition: background-color 0.3s ease;
|
|
margin-top: 0.5rem;
|
|
}
|
|
|
|
.whatsapp-link:hover {
|
|
background-color: #128C7E;
|
|
}
|
|
|
|
.whatsapp-icon {
|
|
font-size: 1.2rem;
|
|
margin-right: 0.5rem;
|
|
display: inline-block;
|
|
}
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
.contact-form {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.contact-title {
|
|
font-size: 2rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.contact-form {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.contact-title {
|
|
font-size: 1.75rem;
|
|
}
|
|
|
|
.submit-button,
|
|
.whatsapp-link {
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
} |