@import url(../fonts/stylesheet.css);

body {
    font-family: Arial, sans-serif;
}
.left-section {
    background-color: #f4cf47;
    padding: 40px;
    color: black;
    min-height: 100vh;
    position: relative;
}
.logo {
    font-size: 32px;
    font-weight: bold;
}
.logo img{
    max-width: 400px;
}
.content { 
    color: #211f1f;
}

.content h1{
    display: inline-block;
    border-top: 1px solid #211f1f;
    border-bottom: 1px solid #211f1f;
    text-transform: uppercase;
    font-size: 45px;
    font-weight: bold;
    padding: 5px 0px;
    font-family: 'TT Firs Neue Trl';      
    margin-bottom: 30px;

}  
.content p{
    font-size: 40px;
    font-family: 'Gotham';
    margin-bottom: 0px;
    font-weight: normal;
    line-height: 50px;
}
.content p strong{
    font-weight: bold;
    font-size: 60px;
    font-family: 'Gilroy';

}
.right-section {
    background: url(../images/BG4.jpg) no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.form-container {  
    margin-right: 70px;
    background-color: #efbe0cc4;
    padding: 20px;
    border-radius: 10px;
    /*
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%); 
    padding: 20px;
    border-radius: 10px;
    */
    max-width: 290px;
}
.form-container h5{
    font-family: 'Gotham';
    font-weight: normal;
    color: #fff;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.form-control {
    margin-bottom: 10px;
}
.form_contenu_input_ligne {
    margin-bottom: 15px;
    position: relative;
}
.form_contenu_input_ligne input { 
    width: 100%;
    height: 40px;
    background-color: #fff; 
    font-size: 18px;
    color: #211f1f;
    outline: none;
    border: 0;
    padding-left: 15px;
    border-radius: 7px;
    box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.75) inset;
    -webkit-box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.75) inset;
    -moz-box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.75) inset;
    font-family: 'Gilroy';
}

.form_contenu_input_ligne .input_text::placeholder{
    color: #211f1f;
    text-indent: 10px; 
    font-family: 'Gilroy';
}
.error{
    color: red;
    font-size: 13px;
}
.group_lb_checkbox{ 
    color: #fff;
}
.custom-checkbox{
    display: inline-block;
}
.submit_input{
    text-align: center;
    margin: 40px auto 40Px;
}
.submit_input_btn {
    background-color: #0f46b3;
    color: #f4cf47; 
    border: 0px;
    border-radius: 7px; 
    padding:12px 20px;
    font-size: 18px;
}


.footer-logo{
    display: flex;
    align-items: flex-end;
}
.footer-logo a{
    text-decoration: none;
    margin-right: 10px; 
}
.footer-logo p{
    margin: 0px;
    color: #0f46b3;
    font-weight: bold;
    line-height: 18px;
    font-family: 'TT Firs Neue Trl';     
}


.left-section::after{
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0px;
    right: 0;
    width: 280px;
    height: 339px;
    background: url(../images/Symbole.svg) no-repeat center center;
    background-size: cover;
    margin: auto;
    transform: translateX(50%);
    z-index: 99999999;
}
 
 

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

    .logo img{
        max-height: 100px;
    }
    .container-fluid-row{
       /* flex-direction: column-reverse;*/
    }
    .right-section { 
        align-items: center;
        justify-content: center;
        padding-top: 200px;
    }
    .content h1 {
        display: inline-block;
        border-top: 1px solid #211f1f;
        border-bottom: 1px solid #211f1f;
        text-transform: uppercase;
        font-size: 31px;
        font-weight: bold;
        padding: 10px 0px;
        font-family: 'TT Firs Neue Trl';
        margin-bottom: 30px;
    }
    .footer-logo{
        margin-top:40px;
    }
    .form-container {  
        margin-right: 0px;
        max-width: 370px;
    }
    .form-container h5{
        padding-top:20px;
    }
    .form_contenu_input_ligne{
        margin-bottom: 20px;
    }
    .form_contenu_input_ligne input{
        height: 50px;
    }
    .left-section { 
        padding: 40px 15px 150px 15px;
        min-height:auto;
    }

    .left-section::after {
        content: " ";
        position: absolute;
        top: auto;
        bottom: 0px;
        right: 0px;
        left: 0px;
        width: 280px;
        height: 339px;
        background: url(../images/Symbole.svg) no-repeat center center;
        background-size: cover;
        transform: translateY(50%);
        z-index: 99999999;
        margin-left: auto;
        margin-right: auto;
    }
    .logo{
        margin-bottom:30px;
    }
    .footer-logo img{
        max-width: 70px;
    }


}