/**
 * CSS Override pour le mode maintenance
 * Ce fichier cache les sections non désirées pendant la maintenance
 * Pour désactiver: supprimer la ligne d'import dans maintenance.html
 */

/* Cache le scroll indicator */
.scroll-indicator {
    display: none !important;
}

/* Cache la section des offres */
.offers-section {
    display: none !important;
}

/* Cache la section bonus */
.bonus-section {
    display: none !important;
}

/* Cache la section palier/objectif */
.palier-section {
    display: none !important;
}

/* Cache la section teasing */
.teasing-section {
    display: none !important;
}

/* Style pour les messages d'erreur du formulaire */
.form-error {
    background: #ffebee;
    color: #c62828;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    display: none;
}

.form-error.show {
    display: block;
}

/* Style pour le bouton désactivé */
.btn:disabled {
    background: #999 !important;
    cursor: not-allowed !important;
    transform: none !important;
}
