/*FONT*/
@font-face {
    font-family: Kufam;
    src: url("../font/Kufam/static/Kufam-SemiBold.ttf") format("woff");
}

/*FORM*/

/* Style pour la colonne de largeur moyenne */
.formMainContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5%;
    align-items: center;
}

.formImg{
    margin-top: 4%;
    height: 150px;
    width: 55%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    object-fit: cover;
    object-position: center;
}

.formMainContainer #form_file{
    height: 70%;
}

@media screen and (max-width: 970px) {
    .formImg{
        width: 80%;
    }
}   

.formContainer {
    width: 55%;
    padding-right: var(--bs-gutter-x, 0.75rem); /* Application d'une marge intérieure à droite et à gauche */
    padding-left: var(--bs-gutter-x, 0.75rem); /* Application d'une marge intérieure à droite et à gauche */
}

@media screen and (max-width: 970px) {
    .formContainer{
        width: 80%;
    }
} 

#formContainerSolo{
    margin-right: auto;
    margin-left: auto;
    margin-top: 4%;
}

.col-md-6 {
    flex: 0 0 auto;
    width: 32.5%;
}

@media screen and (max-width: 970px) {
    .col-md-6{
        width: 100%;
        font-size: 12px;
    }
}

/* Style pour la colonne de largeur moyenne-grande */

.col-md-8 {
    flex: 0 0 auto;
    width: 49.4%;
    font-size: 12px;
}

/* Style pour le conteneur de champs & principal */

.champsContainer{
    display: flex;
    gap: 15px;
    justify-content: center;

}

@media screen and (max-width: 970px) {
    .champsContainer{
        flex-direction: column;
        gap: 0px;
    }
}

@media screen and (max-width: 970px) {
    .form-control{
        font-size: 0.8rem;
    }
}

.champsContainerNoCenter{
    display: flex;
    gap: 15px;
}

.center{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Style pour le formulaire de contact */

#contact-formA {
    background-color: #ffffff;
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

/* Style pour les groupes de formulaire */

.form-group {
    border-width: 1px;
}

/* Style pour les étiquettes de formulaire */

label {
    display: block;
    font-weight: bold;
}

/* Centrer le bouton "envoyer" */

/* Style pour les champs de formulaire */
 

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #B1B1B1;
    background-color: #ebebeb;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Style pour les colonnes de largeur 12 et 6 */

.col-md-12, .col-md-6 {
    margin-bottom: 20px;
}


@media screen and (max-width: 970px) {
    .col-md-12, .col-md-6 {
        font-size: 12px;
    }
}

/*Bouton vérifier en vert*/

#validButton{
    background-color: #caeee5;
    font-size: 16px;
    cursor: pointer;
}