/* public/css/auth.css */

/* Ce fichier est destiné aux styles spécifiques des pages d'authentification (login, register, forgot password, etc.) */
/* Par exemple : */
/*
.auth-container {
    max-width: 450px;
    margin: 40px auto;
    padding: 30px;
    background-color: #3b4446; // Similaire à main
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 25px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-links {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9em;
}
.auth-links a {
    color: #55efc4; // Similaire à main a
    margin: 0 10px;
}
.auth-links a:hover {
    color: #2ecc71;
}
*/

/* Actuellement, aucun style du style.css original ne semble appartenir exclusivement ici. */
/* Les formulaires d'authentification utiliseront probablement les styles de forms.css, layout.css et global.css. */