body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #EEEEFF;
    color: #333;
}

h1 {
    color: #0000FF;
    margin-bottom: 20px;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 150px;
    max-width: 150px;
}

.form-group-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.form-group label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #546e7a;
}

.form-group input {
    padding: 8px;
    border: 1px solid #b0bec5;
    border-radius: 4px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.button-container {
    display: flex;
    gap: 10px;
    justify-content: center;
}

button {
    background-color: #80deea; /* Couleur de fond bleu clair pour les boutons */
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 16px;
    color: #0000FF; /* Texte bleu foncé */
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 10px; /* Marge autour des boutons pour plus d'espace */
}

button:hover {
    background-color: #4dd0e1; /* Couleur de fond bleu clair plus foncé au survol */
}

/* Media query pour les écrans plus petits */
@media (max-width: 600px) {
    .form-container {
        flex-direction: column;
        align-items: stretch;
    }

    .form-group {
        width: 100%;
        margin-bottom: 10px;
    }

    .form-group-row {
        flex-direction: column;
        align-items: stretch;
    }
}
