body
{
    font-family: "Lato", sans-serif;
    margin: 70px 0px;
    background: #013B72;

}
.container{
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;

}
.divider
{
    width: 100px;
    height: 2px;
    background:#fff;
    margin: 0 auto 20px;
}
.heading
{
    text-align: center;
    margin-bottom: 60px;
}
h2
{
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
}
#contact-form
{
    font-size: 20px;
    background: #013B72;
    padding: 40px;
    border-radius: 10px;
}
.blue{
    color: #fff;
}
.form-control
{
    height: 50px;
    font-size: 18px;
}
.comments{
    font-style: italic;
    font-size: 18px;
    color: #f1f1f1;
    height: 25px; /* pour ne pas dépasser l'espace */
}
/* Pour commencer à changer le bouton, je donne une marge et le montre en bloc*/
#contact-form input[type=submit]
{
    margin: 40px auto 0px; /*40 haut, auto gauche et droit, 0 eb bas*/
    display: block;
}
.button5{
    border: 1px solid #ddd;
    background: #ffa500;
    color: #fff;
    width: 100%; /*toute la page et s'adapte à l'écran*/
    font-weight: bold;
    text-transform: uppercase;
    padding: 18px;
    border-radius: 5px;
    transition: all 0.3s ease-in 0s;
}
/*propriété pour hover*/
.button5:hover {
    background: #fff;
    border-color: #ffa500;
}
.thank-you {
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
    font-size: 22px;
}
