/* Titre */
h1 {
    font-size: 50px;
    font-weight: bold;
    color: #16a7c4;
    margin-bottom: 25px;
    margin-top: 3em;
    text-align: center;
}
h2 {
    font-size: 35px;
    /*font-weight: bold;*/
    color: rgb(170, 169, 169);
    margin-top: 25px;
}
h3 {
    font-size: 30px;
    /*font-weight: bold;*/
    margin-bottom: 25px;
}

/* Ligne du formulaire */
.rowFormulaire {
    margin-top: .5em;
}

/* label */
.form-label {
    margin-top: 15px;
}

/* Input */
.form-control {
    background-color: rgba(232, 232, 232, 0.675);
}

.form-control:hover {
    background-color: white;
}

/* Bouton */
.btnFormulaire {
    width: 100%;
    height: 45px;
    box-shadow: 5px 5px 5px -6px #0000008d;   
    background: 
    linear-gradient(
        rgba(255, 255, 255, 0.962), 
        rgba(167, 166, 166, 0.486)
      );
    border: none;
    border-radius: 7px;
    font-size: 22px;
    /*font-weight: bold;*/
    /*color: #16a7c482;*/
    margin-top: 20px;
    margin-bottom: 20px;
}
.btnFormulaire:hover {
    transform: scale(1.05);
    background-color: white;
}

/* Image */
.imgFormulaire {
    opacity: 100%;
    border: 3px solid rgb(255, 255, 255);
    border-radius: 25% 10%;
}


