.titre {
    display: flex;
    justify-content: center;
    font-size: 4.5rem;
    font-weight: bold;
    padding-bottom: 2rem;
    margin: 0 auto;
}

.hr {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 60%;
    height: 0.2rem;
    background-color:rgb(5, 123, 84);
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    width: 40%;
    height: auto;
    padding-top: 1rem;
    gap: 1rem;
    background-color: rosybrown;
    border: 2px solid rgb(5, 123, 84);
    border-radius: 2rem;
}

.formInput {
    text-align: center;
    width: 10rem;
    height: 2rem;
    gap: 1rem;
}

.formLabel {
    text-align: center;
    width: 10rem;
    height: 2rem;
    gap: 1rem;
}

.formSubmit {
    display: flex;
    background-color: salmon;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
    margin: 0 auto;
    border-radius: 1rem;
    width: 9rem;
    height: 3rem;
    margin: 1rem auto 1rem auto;
    grid-column: span 2;
    border: 1px solid rgb(5, 123, 84);
}

@media only screen and (max-width: 768px) {

    .titre {
        text-align: center;
        font-size: 2.5rem;

    }

    .form {
        width: 90%;
    }

    .hr {
        width: 80%;
    }

    .formInput {
        width: 8rem;
    }

    .formLabel {
        width: 8rem;
    }

    .formSubmit {
        width: 7rem;
    }
}