/**
 * CSS spécifique pour Forme 1 - Mise à jour annuelle
 * Couleurs: #C6B477 et #C5912F
 */
 /* Radio buttons styling - Gold colors like Form 3 */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

.radio-label:hover {
    border-color: #C6B477;
    background: #faf9f5;
}

.radio-label input[type="radio"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #C5912F;
}

.radio-label input[type="radio"]:checked + span {
    font-weight: 500;
    color: #C5912F;
}

.radio-label:has(input:checked) {
    border-color: #C6B477;
    background: #faf9f5;
}

.radio-label span {
    color: #333;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .radio-group {
        gap: 10px;
    }
    
    .radio-label {
        padding: 10px 12px;
        font-size: 14px;
    }
}
 
.form-1-container {
    /* Stylisation additionnelle pour forme 1 */
}

.form-1-container h2 {
    color: #C5912F;
}

.form-1-container .form-notice {
    background: #faf9f5;
    border-left-color: #C6B477;
    color: #4a4a4a;
}

/* Styles pour champs financiers */
.form-1-container input[type="number"] {
    background: #fafafa;
    font-weight: 400;
}

.form-1-container input[type="number"]:focus {
    background: #ffffff;
    border-color: #C6B477;
}

/* SUPPRIMÉ - Groupement de champs pour que tous soient identiques */

/* Animation lors du submit */
.form-1-container.submitting {
    opacity: 0.6;
    pointer-events: none;
}

/* État succès */
.form-1-container.submitted {
    border: 2px solid #46b450;
    animation: successPulse 0.5s ease;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Ajustements responsive - SUPPRIMÉ */