/* Style de base, similaire à index.html */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Conteneur principal */
.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #e0e0e0; /* Texte de base */
}

/* Titre de la page */
h2 {
    color: #003366; /* Bleu nuit */
    margin-bottom: 30px;
    font-size: 24px;
}

/* Style des champs de formulaire */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    color: #003366; /* Bleu nuit */
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    background-color: #2c2c2c;
    border: 1px solid #444444;
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 16px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #003366; /* Bleu nuit */
    box-shadow: 0 0 5px rgba(0, 51, 102, 0.5);
    outline: none;
}

/* Style du bouton */
button {
    width: 100%;
    padding: 12px;
    background-color: #003366; /* Bleu nuit */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #004080; /* Bleu nuit plus clair */
}

/* Lien de connexion */
.login-link {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
}

.login-link a {
    color: #003366; /* Bleu nuit */
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-link a:hover {
    color: #f7c531;
    text-decoration: underline;
}
