/**
 * Interest Form - Styles spécifiques au formulaire d'intérêt
 * Hérite des styles de quote-modal.css - Ajouts minimes pour cohérence
 */

/* Intro du formulaire - style sobre */
.interest-form-intro {
    margin-bottom: 20px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #6366f1;
}

.interest-form-intro .intro-text {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

/* Message de succès - réutilise les styles existants */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message .success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #ecfdf5;
    border-radius: 50%;
    margin-bottom: 20px;
    color: #059669;
}

.success-message h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

.success-message p {
    margin: 0 0 20px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* Message d'erreur */
.form-error-message {
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #dc2626;
    font-size: 14px;
    margin-bottom: 16px;
}

/* État d'erreur sur les champs */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #ef4444 !important;
}

/* Spinner d'envoi */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
