/* DÉBUT CSS CONNEXION/INSCRIPTION PERSONNALISÉ */

.login-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(55, 50, 62, 0.2); /* #37323e avec opacité */
    width: 300px;
    text-align: center;
}

.login-box h2 {
    margin-bottom: 20px;
    color: #37323e; /* Titre foncé */
}

.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #bfbdc1; /* gris clair */
    background-color: #f9f9f9;
    color: #37323e;
}

.login-box input[type="submit"] {
    background-color: #deb841; /* bouton jaune vif */
    color: #37323e;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.login-box input[type="submit"]:hover {
    background-color: #de9e36; /* hover orange doux */
}

.login-box a {
    display: block;
    margin-top: 15px;
    text-decoration: none;
    color: #6d6a75; /* gris foncé */
    transition: color 0.2s ease;
}

.login-box a:hover {
    color: #37323e; /* accent foncé */
    text-decoration: underline;
}

/* Fond de la section pour centrer verticalement */
.fond_page_milieu {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

/* FIN CSS PERSONNALISÉ */
