/* ====================== */


/* SEZIONE CONTATTI */


/* ====================== */

.contact-section {
    padding: 4rem 0;
}

.contact-form {
    background: var(--white);
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-top: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(232, 73, 29, 0.3);
}

.g-recaptcha {
    margin-top: 1rem;
    transform: scale(0.85);
    transform-origin: 0 0;
}

.grecaptcha-badge {
    visibility: hidden;
}


/* Evidenziazione dei campi con errore */

input.error, textarea.error {
    border: 1px solid red;
}

.error-message {
    display: block;
    font-size: 0.8rem;
    color: red;
    text-align: left;
}
