@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: #e4ebdf;
}

body {
    color: black;
    display: flex;
    font: 62.5% 'light', sans-serif;
    font-size: 1.1rem;
    flex-direction: column;
    width: 100%;
}

ul {
    list-style: none;
}

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

.hide {
    display: none;
}

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

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

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

.lost{
    color: #FBA00B;
    
}

.container{
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 200px;
    margin-bottom: 150px;
    width: 100%;
}

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

.box>*{
    width: 100%;
    margin-top: 1em;
}

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

.form_input{
    background: #ffffff7d;
    border-radius: 5px;
    color: black;
    font-weight: bold;
    padding: 10px;
    height: 50px;
    width: 100%;
    margin: 10px 0 10px 0;
}

.form_input:focus-within {
    border: #fff solid 2px;
    outline: solid 1px #FBA00B;
}

#form_res {
    color: rgb(247, 64, 64);
    font-weight: 700;
    margin-top: 1em;
    text-align: center;
}

.note{
    font-family: 'medium';
    font-size: 0.9rem;
    font-style: italic;
    margin: 5px;
}

.news{
    padding-top: 25px;
}

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

.btn_input{
    background: #fba00b;
    border-radius: 5px;
    color:#fff;
    font-weight: bold;
    font-size: 1.5rem;
    height: 50px;
    margin: 10px 0 10px 0;
    transition: all 0.8s ease;
    width: 100%;
}

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

.log{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 15px;
    
}

.login{
    color: #fba00b;
}

@media (min-width: 1024px){
    .login:hover{
        color: #e68e00;
    }    
}
.facebook{
    margin: 50px;
    align-items: center;
    text-align: center;
    width: 60%;
}

.not_visible{
    display: flex;
    justify-content: center;
    width: 100%;
    background: #3B579D;
    color: #fff;
    text-align: center;
    margin: 5px;
    border-radius: 5px;
    padding: 5px;
}

.not_visible>span{
    font-weight: bold;
    transform: translateY(30%);
    margin: 5px;
    font-size: 1.2rem;
}

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

.text{
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.log{
    color:#FBA00B;
    font-weight: bold;
    font-size: 2rem;
    margin: 10px;
}

.log:hover{
    color:hsl(37, 97%, 41%);
}

/* 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{
        font-size: .8rem;
        line-height: 1.2rem;
    }

    .btn_input{
        font-size: 1.2rem;
    }

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