/* Style pour un fond bleu nuit */
body {
    background-color: #ffffff; /* Bleu nuit */
    color: #081C32; /* Texte blanc */
    margin: 0;
    font-family: 'Arial', sans-serif;

}

/* Centrage du contenu */
.content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

/* Style pour le titre */
.content-center h1 {
    font-size: 3em;
    margin-bottom: 30px;
    color: #081C32; 
}

/* Style pour l'image de chargement */
.loading-image {
    width: 120px; /* Ajuste la taille de l'image */
    margin: 50px 0;
    animation: spin 2s infinite linear; /* Effet de rotation */
}

/* Effet de rotation pour l'image */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Style pour le bouton Adhésion */
.adhesion-btn {
    padding: 15px 30px;
    background-color: #F57C00; /* Orange vif */
    color: #081C32;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.adhesion-btn:hover {
    background-color: #33C3FF; /* Change en bleu clair au survol */
    transform: scale(1.1); /* Effet de grossissement */
}
