/* Style général */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.logo {
    width: 250px;
    margin-bottom: 10px;
    
} 


.bouton{
/* Mise en forme de base */
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); /* Dégradé bleu */
    color: white; /* Couleur du texte */
    text-decoration: none; /* Enlever le soulignement du lien */
    
    /* Bordures et coins arrondis */
    border-radius: 50px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
    
    /* Ombre pour l'effet de relief */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease; /* Animation fluide au survol */
}


