* {
    box-sizing: border-box;
}

/* Style pour le corps de la page */
body {
    background-color: rgb(0, 0, 0); /* Fond noir */
    color: white; /* Texte en blanc */
    font-family: Arial, sans-serif; /* Police */
    margin-left: 30px;
    margin-right: 30px;
    /*padding: 10px;*/ /* Espacement interne */
}

/* Style des titres */
h1 {
    text-align: center;
    color: #0066da; /* Couleur orange pour les titres */
    font-size: 25px;    /* Taille du texte à l'intérieur du bouton */
    margin-bottom: 35px;
}
h2 {
    text-align: center;
    font-weight: lighter;
    color: #ffffff; /* Couleur orange pour les titres */
    font-size: 15px;    /* Taille du texte à l'intérieur du bouton */
    margin-top:20px;
}

/* MENU */

.full-width-image { /* Pour la ligne de syle sous le manu */
    width: 100%;
    height: auto;     /* Maintient le ratio d'aspect d'origine */
    display: block;   /* Supprime tout espacement autour de l'image */
    margin: 0;        /* Retire la marge par défaut */
    padding: 0;       /* Retire le padding par défaut */
}


.logo img {
    height: 71px;
    width: auto;
}


/* Styles pour petits écrans */
@media (max-width: 1412px) {
    .logo img {
        height: 50px;
        width: auto;
    }
    body {
        background-color: rgb(0, 0, 0); /* Fond noir */
        color: white; /* Texte en blanc */
        font-family: Arial, sans-serif; /* Police */
        margin-left: 2px;
        margin-right: 2px;
        /*padding: 10px;*/ /* Espacement interne */
    }

}


/* Style pour le conteneur de connexion */
.login-container {
    max-width: 400px; /* Largeur maximale du conteneur */
    margin: 100px auto; /* Centrer le conteneur */
    padding: 20px; /* Espacement interne */
    background: rgb(56, 56, 56); /* Fond gris clair */
    border-radius: 10px; /* Bords arrondis */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Ombre */
}

/* Style pour les messages d'erreur */
.notification-bleu, .notification-red {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0; /* Invisible par défaut */
    transition: opacity 0.5s ease;
    z-index: 1000;
}

.notification-bleu {
    background-color: #0952a4; /* Couleur de fond */
}

.notification-red {
    background-color: rgb(183, 24, 24); /* Couleur de fond */
}

/* Classe pour montrer la notification */
.show {
    opacity: 1; /* Afficher la notification */
}






/* pour mettre les éléements en colonne */
.login-container form {
    display: flex;
    flex-direction: column;
}
.login-container input[type="text"],
.login-container input[type="password"] {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #555; /* Slightly darker border */
    border-radius: 5px;
    background-color: #626262; /* Darker input background */
    color: #fff;
    font-size: 1em;
}
.loginButton{ 
    display: block;
    margin: 0 auto;
    background-color: rgb(80, 80, 80); /* Couleur de fond du bouton */
    color: white; /* Couleur du texte */
    border: none; /* Supprime la bordure par défaut */
    border-radius: 5px; /* Arrondit les bords */
    padding: 10px 20px; /* Ajoute de l'espace à l'intérieur du bouton */
    cursor: pointer; /* Change le curseur au survol */
    padding: 10px 30px; /* Contrôle la taille des boutons */
    font-size: 16px;    /* Taille du texte à l'intérieur du bouton */
    margin-top: 20px;
    width: 100%;
}

.loginButton:hover {
    background-color:  rgb(122, 122, 122); /* Couleur au survol */
}