body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Conteneur centré verticalement mais sous le h1 */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Ajouté pour centrer les éléments à l’intérieur */
    gap: 10px;
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
}

input {
    width: 100%;  /* Pour que les champs prennent toute la largeur du formulaire */
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #1e1e1e;
    color: #ffffff;
    font-size: 1em;
}

input[type="submit"] {
    background-color: #333;
    border: 1px solid #555;
    color: #fff;
    cursor: pointer;         /* Curseur "main" au survol */
    transition: background-color 0.3s, transform 0.2s;
}

input[type="submit"]:hover {
    background-color: #555;  /* Fond un peu plus clair */
    transform: scale(1.02);  /* Effet de zoom léger */
}


h1 {
    font-size: 2.5em;
    text-align: center;
    margin: 0;
}

p {
    font-size: 1.2em;
    text-align: center;
    margin: 10px 0;
}

/* Responsive pour téléphone */
@media screen and (max-width: 600px) {
    form {
        max-width: 90%;
    }

    h1 {
        font-size: 2em;
    }

    input {
        font-size: 1em;
    }
}
