@font-face {
    font-family: 'rubik';
    src: url(../font/Rubik/Rubik-VariableFont_wght.ttf);
}
@font-face {
    font-family: 'assistant';
    src: url(../font/Assistant/Assistant-VariableFont_wght.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: #2d2d2d; font-family: 'rubik'; }
    body {
        font: 62.5% 'assistant', sans-serif;
        display: flex;
        flex-direction: column;
        font-size: 1.1rem;
        color: #fff;
        width: 100%;
    }
    ul { list-style: none; }
    a {
        color: inherit;
        text-decoration: none;
        cursor: pointer;
    }
    .hide { display: none; }
    .hidden{ visibility: hidden; }
/* END RESET */

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

.logo{
    text-align: center;
    margin: 50px 0 50px 0;
}

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

.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: #eee;
    font-weight: bold;
    height: 50px;
    width: 100%;
    margin: 10px 0 10px 0;
    
}

form>div>div>input {
    padding: 15px;
}

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

.news{
    padding-top: 25px;
}

.phone{
    margin-top: 10px;
}

.pass{
    color: #F6B617;
}

input{
    border-radius: 10px;
    color:#373737;
    font-size: 1.2rem;
    margin-left: 10px;
}

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

.btn_input:hover{
    background: #fff ;
    background-size: 300% 100%;
    background-position: right bottom;
    border-color: #FFF !important;
    color: #F6B617 !important;
    transition: all 0.2s ease;
}

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

.login{
    color: #F6B617;
}

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

.facebook{
    height: 50px;
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.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_sub{
    margin: 5px;
    border-radius: 5px;
    padding: 5px;
}


.face>span{
    font-weight: bold;
    transform: translate(50%, 24%);
    margin: 4px;
    text-align: center;
    font-size: 1.2rem;
}

/* .face:hover{
    background:  #FFF;
    background-size: 300% 100%;
    background-position: right bottom;
    border-color: #FFF !important;
    color: #385898 !important;
    transition: all 0.2s ease;
}
#google_sub:hover{
    border-color: #385898 !important;
} */

.img_logo{ width: 25%; }

#form_error {
    color: #da3434;
    margin: 7px 0;
}

/* RESPONSIVE */

@media (max-width: 1080px){
    .box { width: 60%; }
    input{ font-size: 1rem; }
    .img_logo{ width: 30%; }
}


@media (max-width: 700px){
    input { font-size: .8rem; }
    .box { width: 80%; }
    .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; }
    .img_logo { width: 40%; }
    .face { margin-bottom: 50px; width: 240px; }
}



