/* style-auth.css */

/* Corps de page */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, #e0f2ff, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* Conteneur formulaire */
.auth-container {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Titres */
.auth-container h2 {
    margin-bottom: 25px;
    color: #0077cc;
}

/* Inputs */
.auth-container input[type="text"],
.auth-container input[type="email"],
.auth-container input[type="nom"],
.auth-container input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

/* Boutons */
.auth-container button {
    background-color: #0077cc;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    transition: background 0.3s;
}

.auth-container button:hover {
    background-color: #005fa3;
}

/* Liens */
.auth-container p a {
    color: #0077cc;
    text-decoration: none;
}

.auth-container p a:hover {
    text-decoration: underline;
}

/* Messages d’erreur */
.auth-container .error {
    color: #d9534f;
    margin-bottom: 10px;
    font-weight: bold;
}
