/* Style global */
body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a; /* Fond sombre */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #e0e0e0; /* Couleur de texte claire */
}

h2 {
    color: #4CAF50; /* Vert */
}

/* Conteneur du formulaire */
form {
    background-color: #2a2a2a; /* Fond du formulaire */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    width: 300px;
}

label {
    font-size: 14px;
    color: #e0e0e0; /* Couleur claire pour les labels */
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #4CAF50; /* Bordure verte */
    border-radius: 4px;
    background-color: #333; /* Fond sombre pour les champs */
    color: #e0e0e0; /* Texte clair */
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50; /* Vert */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049; /* Vert plus clair au survol */
}

/* Message d'erreur */
p {
    font-size: 14px;
    color: red;
    text-align: center;
}
