* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #18191a;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 60px;
    flex-direction: column;
}

.container {
    background-color: #2e2d2d;  /* Fond couleur similaire au header */
    color: #bbfcfb;  /* Texte en couleur claire pour le contraste */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);  /* Ombre douce pour faire ressortir le conteneur */
    width: 90%;
    max-width: 600px;
    text-align: center;
}

.container h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.container p {
    margin: 10px 0;
}

.container a {
    color: #bbfcfb;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
}

.container a:hover {
    color: #ffffff;
}

.container a:active {
    color: #bbfcfb;
}

form {
    margin-top: 20px;
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 16px;
}

form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #333;
    color: #fff;
}

form button {
    background-color: #bbfcfb;
    color: #2e2d2d;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #9bfbf5;
}

.bottom-link {
    color: #bbfcfb;
    font-size: 16px;
    margin-top: 20px;
}

.bottom-link a {
    text-decoration: none;
    color: #bbfcfb;
}

.bottom-link a:hover {
    color: #ffffff;
}

/* Ajout d'un style pour le bouton de déconnexion sur la page protégée */
#logout-button {
    background-color: #bbfcfb; /* Couleur similaire aux autres boutons */
    color: #2e2d2d; /* Texte sombre pour contraster avec le fond clair du bouton */
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
    margin-top: 20px; /* Espacement au-dessus du bouton */
}

#logout-button:hover {
    background-color: #9bfbf5; /* Couleur au survol */
}