.conteneur-all {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.contact {
    background-color: var(--header);
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    border-radius: 0.25rem;
    padding: 1rem;
}

h1 {
    text-align: center;
    font-weight: bold;
    margin-top: 0.5rem;
}

#msg {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}

.content-form {
    display: flex;
    justify-content: center;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    text-align: center;
}

input, textarea {
    color: var(--ecriture);
    margin-bottom: 1rem;
    outline: none;
    font-size: 18px;
    border: 2px solid #3498db;
    border-radius: 0.25rem;
    padding: 4px;
    transition: 0.5s;
    background-color: var(--fond);
}

input:focus, textarea:focus {
    border: 2px solid #48bb78;
}

input[type = "submit"] {
    text-align: center;
    background-color: #48bb78;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: 0.5s;
    color: #fff;   
    border: none;
    font-weight: 600;
    height: 40px;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

input[type = "submit"]:hover {
    background-color: #059669;
}