@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;
}

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 */

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

.step, .title{
    font-family: "rubik";
    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: #fff;
    color:#2d2d2d;
    font-weight: bold;
    font-family: 'assistant';
    height: 50px;
    width: 100%;
    margin: 10px 0 10px 0;
    border-radius: 10px;
}

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

.news{
    padding-top: 25px;
}

.phone{
    margin-top: 10px;
}

.pass{
    color: #F6B617;
}

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

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

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

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

.login{
    color: #F6B617;
    margin-top: 25px;
}

.remember{
    margin-bottom: 25px;
}

.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: 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;
    }
}



