.elementor-826 .elementor-element.elementor-element-09b1b80{--display:flex;}.elementor-826 .elementor-element.elementor-element-5c19c3d.elementor-element{--align-self:center;}.elementor-826 .elementor-element.elementor-element-ec0cdb6.elementor-element{--align-self:center;}/* Start custom CSS *//* Animation de clignotement pour l'inscription */
#bouton-inscription {
    animation: clignoterInscription 1.5s infinite alternate; /* 1.5s pour la durée, infinite pour répéter, alternate pour l'effet de va-et-vient */
}

@keyframes clignoterInscription {
    0% { opacity: 1; transform: scale(1); } /* État initial */
    50% { opacity: 0.7; transform: scale(1.05); } /* Légèrement moins opaque et plus grand */
    100% { opacity: 1; transform: scale(1); } /* Retour à l'état initial */
}

/* Animation de clignotement pour la connexion */
#bouton-connexion {
    animation: clignoterConnexion 1.5s infinite alternate;
}

@keyframes clignoterConnexion {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}/* End custom CSS */