/* ============================================================================
   COMPOSANT HUBSPOT FORMS - ACLG
   Date : 2025-10-25
   Styling des formulaires HubSpot intégrés dans les modales
   Extrait de solution.html.twig (lignes 670-713)
   ============================================================================ */

/* Styling général du formulaire HubSpot */
#hubspot-form-demo .hs-form {
    font-family: inherit !important;
}

#hubspot-form-demo .hs-submit .actions {
    text-align: center !important;
}

/* Bouton submit HubSpot */
#hubspot-form-demo .hs-button {
    background: #00557f !important;
    color: #fff !important;
    padding: 12px 30px !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

#hubspot-form-demo .hs-button:hover {
    background: #004466 !important;
}

/* Messages d'erreur */
#hubspot-form-demo .hs-error-msgs {
    color: #d9534f !important;
    font-size: 13px !important;
    margin-top: 5px !important;
}

/* Champs de saisie */
#hubspot-form-demo .hs-input {
    width: 100% !important;
    padding: 10px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 14px !important;
}

/* Espacement des champs */
#hubspot-form-demo .hs-form-field {
    margin-bottom: 15px !important;
}
