body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Conteneur principal */
.container {
    max-width: 600px;
    margin: 70px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Titre principal */
h1 {
    color: #ffffff;
    text-align: center;
    text-shadow: 0 0 10px #8000ff, 0 0 20px #8000ff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #2c2c2c;
    color: #fff;
}

button {
    padding: 10px 20px;
    background-color: #ffcc00;
    color: #121212;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #e6b800;
}

/* Media Queries pour les petits écrans (tablettes et téléphones) */
@media (max-width: 768px) {
    .container {
        width: 90%; /* Réduit la largeur pour s'adapter aux petits écrans */
        margin: 20px auto;
    }

    h1 {
        font-size: 2rem; /* Réduit la taille du titre */
    }
}

/* Media Queries pour les très petits écrans (téléphones) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem; /* Réduit encore la taille du titre */
    }
}