body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #0f1620;
    color: #ffffff;
    height: 100%;
    overflow-x: hidden;
}

/* Centrer le formulaire sur la page */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Styles du formulaire */
form {
    width: 100%;
    max-width: 600px;
    background-color: rgba(113, 189, 240, 0.1);
    padding: 2rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    background-color: rgba(208, 214, 231, 0.2);
    color: #ffffff;
}

input::placeholder, textarea::placeholder {
    font-family: 'Roboto', sans-serif;
    color: rgba(255, 255, 255, 0.7);
}

textarea {
    height: 150px;
    resize: vertical;
    font-family: 'Roboto', sans-serif;
}

.form-group.button-container {
    display: flex;
    justify-content: center;
}

button.submit-button {
    background-color: #ff6b6b;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

button.submit-button:hover {
    background-color: #ff8787;
}

section {
            padding-top: 100px; /* Ajustez cette valeur selon vos besoins */
            margin-top: -100px; /* La même valeur que le padding-top pour compenser le décalage */
        }


@media (max-width: 768px) {    
    h1 {
        padding-top: 5rem;
        font-size: 1.3rem;
    }
}