html{
    background-color: #FAFAFA;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;;
    width: 100%;   
    height: 700px;
}
.pagina{
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagem{
    margin-right: 2%;
    margin-top: 100px;

}
.login{
    background-color: #FFFFFF;
    border: 1px solid gainsboro;
    width: 350px;
    height: 570px;
    margin-top: 120px;
}
.logo{
    display: flex;
    justify-content: center;  
    margin-top: 40px;
    margin-bottom: 20px;
}

.campos form{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0px 30px;
}
input{
    margin-bottom: 10px;
    padding: 10px;
    background-color: #FAFAFA;
    border: 1px solid gainsboro;
    border-radius: 3px;
    font-size: 12px;
    color: gray;
}

.btn-entrar{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #B2DFFC;
    border-radius: 3px;
    height: 30px;
    margin: 0px 30px;
    margin-top: 10px;
}
.btn-entrar a{
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.ou{
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
.ou h4{
    font-weight: 100;
    font-size: 15px;
    color: #C9C9C9;
}
.ou::before{
    content: "";
    background-color: #DBDBDB;
    width: 100px;
    height: 1px;
    margin-top: 27px;
    margin-right: 10px;    
}
.ou::after{
    content: "";
    background-color: #DBDBDB;
    width: 100px;
    height: 1px;
    margin-top: 27px;
    margin-left: 10px;    
}

.facebook{
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.facebook .entrar{
    margin-top: 2px;
    margin-left: 10px;
}
.facebook a{
    text-decoration: none;
    color: #385185;
    font-style: bold;
    font-weight: 600;
    margin-top: 30px;
}
.facebook img{
    width: 20px;
}

.esqueceu-senha{
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.esqueceu-senha a{
    text-decoration: none;
    color: #00376B;
}

.espacamento{
    background-color: #FAFAFA;
    width: 352px;
    margin-left: -1px;
    height: 10px;
    border-top: 1px solid gainsboro;
}
.sem-conta{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    border-top: 1px solid gainsboro;
    border-bottom: 1px solid gainsboro;
    width: 350px;
    height: 10%;
}
.sem-conta h4{
    font-weight: 300;
}
.sem-conta a{
    color: #0095F6;
    text-decoration: none;
    margin-left: 2%;
}

.obter-app{
    width: 353px;
    margin-left: -2px;
    height: 100px;
    margin-bottom: 500px;
}
.obter-app-titulo{
    display: flex;
    justify-content: center;
    background-color: #FAFAFA;
}
.obter-app-titulo h4{
    font-weight: 300;
    margin-top: 10px;
    margin-bottom: 10px;
}

.obter-app-download{
    display: flex;
    justify-content: center;
    background-color: #FAFAFA;
    height: 60px;
}


footer{
    background-color: #FAFAFA;
    margin-top: 50px;
    height: 170px;
}
.links{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: auto;
    font-size: 12px;
    margin-bottom: 10px;
}

.links a{
    text-decoration: none;
    color: #8E8E8E;
    font-weight: 300;
    margin-right: 15px;
}

.links2{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 12px;
}

.links2 a{
    text-decoration: none;
    color: #8E8E8E;
    font-weight: 300;
    margin-right: 10px;
}

.linguagem{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
}
.linguagem select{
    border: none;
    color: #8E8E8E;
    font-weight: 300;
    background-color: #FAFAFA;
}

.linguagem h5{
    font-weight: 100;
    margin-left: 30px;
    color: #8E8E8E;
}

/* Responsivo - media queries */

/* até 1024px */ 
@media(max-width: 1024px){
    .pagina{
        width: 95%;
    }
}

/* até 650px */
@media(max-width: 650px){
    .pagina{
        width: auto;
    }
    .imagem{
        display: none;
    }
    .login{
        margin: 0%;
        width: auto;
    }
    footer{
        display: none;
    }
}