@font-face {
    font-family: 'light';
    src: url(../../assets/fonts/Balboa-UltraLight/font.ttf);
}
/* RESET */
*, *:before, *:after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    
}

html {
    background-color: #FFFFFF;
}

#body-content {
    color: #001212;
    display: flex;
    flex-direction: column;
    font: 62.5% 'light', sans-serif;
    font-size: 1.1rem;
    min-height: 100vh;
    padding-top: 250px;
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 1024px) {
    #body-content {
        padding-top: 150px;
    }
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.hide {
    display: none;
}

.hidden {
    visibility: hidden;
}
/* END RESET */

/* #body-content.dark { 
    background-color: #003838; 
    color: #fff 
} */

#body-content #header_logo_white { display: none; }
#body-content.dark #header_logo_white { display: initial; }

#body-content #header_logo_black { display: initial; }
#body-content.dark #header_logo_black { display: none; }

#body-content.dark h1,
#body-content.dark h2,
#body-content.dark h3 { font-weight: 100; }

input[type="checkbox"] {
    accent-color: #FBA00B;
    margin-right: 7px;
}

.logo{
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    margin: 50px 0;
    width: 150px;
}

.step, .title{
    text-align: start;
    margin-bottom: 15px;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.box{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 40%;
}

.box>*{
    width: 100%;
}

.form_body{
    width: 100%;
    height: auto;
}

.form_input {
    /* background: #003838; */
    border-radius: 5px;
    font-weight: 100;
    color: black;
    font-size: 1rem;
    margin: 10px 0 10px 0;
    padding: 13px 10px;
    width: 100%;
}

#body-content.dark .form_input {
    /* background: #fff;
    color: #003838; */
    font-weight: 700;
}

/* .form_input{
    background: #003838;
    font-weight: bold;
    height: 50px;
    width: 100%;
    margin: 10px 0 10px 0;
} */

.note{
    font-size: 0.8rem;
    font-style: italic;
    margin: 5px;
}

.news{
    padding-top: 25px;
}

.phone{
    margin-top: 10px;
}

.pass{
    color: #FBA00B;
}

input{
    color:#fff;
    font-size: 1.2rem;
}

input:focus-within {
    border: 2px solid #FBA00B;
}

#login_connect_btn {
    background-color: #fba00b;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    color:#fff;
    font-size: 1.5rem;
    margin: 10px 0 10px 0;
    padding: 13px;
    width: 100%;
}

#login_connect_btn:hover {
    cursor: pointer;
    /* color: black; */
    opacity: 80%;
}

/* .btn_input{
    background: #fba00b;
    font-weight: bold;
    color:#fff;
    font-size: 1.5rem;
    height: 50px;
    width: 100%;
    margin: 10px 0 10px 0;
    cursor: pointer;
}*/

/* .btn_input:hover{
    background: linear-gradient(to right, #FBA00B 50%, #FFF 50%);
    background-size: 300% 100%;
    background-position: right bottom;
    border-color: #FFF !important;
    color: #FBA00B !important;
    transition: all 0.8s ease;
} */

.remember {
    cursor: pointer;
    /* [type="checkbox"]:checked {
        /* Cache la checkbox sans
           la rendre invisible aux
           lecteurs d'écran */
       /* background-color: red;
        color: #fff;
    }*/
}

.log{
    flex-direction: row;
    margin: 15px 0 15px 0;
   
}

.log > div {
    margin: 7px 0;
}

.login{
    color: #fba00b;
}

.social{
    margin-top: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.facebook{
    align-items: center;
    display: flex;
    height: 50px !important;
    margin-top: 5px;
}

.facebook img {
    height: 38px;
}

.google{
    height: 50px;
    margin: 50px;
    display: flex;
    align-items: center;
}

.face {
    display: flex;
    width: 250px;
    background: #3B579D;
    color: #fff;
    text-align: center;
    margin: 5px;
    border-radius: 2px;
    padding: 6px;
    cursor: pointer;
}

.google:hover,
.face:hover,
#redirect_register_login:hover {
    opacity: 80%;
}
.google,
.face,
#redirect_register_login {
    transition: 0.3s;
}

#google_sub{
    margin: 5px;
    border-radius: 5px;
    padding: 5px;
}

.face>span{
    font-size: 1.2rem;
    font-weight: 100;
    margin: 4px;
    padding-left: 20px;
    text-align: center;
    transform: translate(5%, 24%);
}

/* 
.face:hover{
    background: linear-gradient(to right, #385898 50%, #FFF 50%);
    background-size: 300% 100%;
    background-position: right bottom;
    border-color: #FFF !important;
    color: #385898 !important;
    transition: all 0.8s ease;
} */

/* #google_sub:hover{
    border-color: #385898 !important;
} */

#error_message {
    color: #ff0000cc;
    text-align: left;
    
}

/* RESPONSIVE */

@media (max-width: 1080px){
    .box{
        width: 60%;
    }

    .form_input{
        height: 40px;
    }

    input{
        font-size: 1rem;
    }
}


@media (max-width: 700PX){
    .box{
        width: 80%;
    }

    .form_input{
        height: 30px;
    }

    input{
        font-size: .8rem;
    }

    .text_news, .phone{
        font-size: .8rem;
        line-height: 1.2rem;
    }

    .btn_input{
        font-size: 1.2rem;
    }

    .face>span{
        font-size: 1rem;
    }

    .social{
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    



    .face{
        margin-bottom: 50px;
        width: 250px;
    }
}



