body{
    margin: 0;
    font-family: sans-serif;
}

#area_login_sistema{
    background: rgb(2,0,36);
    background: linear-gradient(45deg, rgba(2,0,36,1) 4%, rgba(185,42,255,0.40948879551820727) 28%, rgba(54,10,91,1) 71%, rgba(0,124,149,1) 100%);
    /* background-image: url(../img/bk_inico_login.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
    height: 100vh;
}

#area_login_sistema .titulo_portal{
    text-align: center;
    color: white;
    width: 80%;
    margin: auto;
}

#area_login_sistema .titulo_portal img{
    width: 20%;
    margin-top: 30px;
    background-color: white;
    padding: 15px;
    border-radius: 5px;
}

#area_login_sistema .titulo_portal h1{
    font-size: 18pt;
}

#area_login_sistema .botoes_acesso{
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 70%;
    margin: auto;
    padding: 0 0 30px 0;
}

#area_login_sistema .botoes_acesso a{
    color: white;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: #4d4dff;
    width: 50%;
    margin: auto;
    border-radius: 5px;
    transition: all .2s linear;
}

#area_login_sistema .botoes_acesso a:hover{
    background-color: green;
}

#area_login_sistema .botoes_acesso a:nth-child(1){
    margin-bottom: 20px;
    margin-top: 30px;
}

#area_login_sistema .formulario{
    display: flex;
    flex-direction: column;
    width: 70%;
    margin: auto;
    background-color: white;
    color: #4d4dff;
    padding: 20px 0;
    box-sizing: border-box;
}

#area_login_sistema .formulario div img{
    width: 50px;
    margin-top: 10px;
}

#area_login_sistema .formulario form{
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: auto;
    text-align: left;
}

#area_login_sistema .formulario form label{
    margin-bottom: 5px;
}

#area_login_sistema .formulario form label:nth-child(3){
    margin-top: 15px;
}

#area_login_sistema .formulario form input{
    height: 30px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #ccc;
    padding: 0 0 0 5px;
    color: black;
}

#area_login_sistema .formulario section{
    position: relative;
    height: 30px;
}

#area_login_sistema .formulario section input{
    position: absolute;
    top: 0;
    left: 0;
    width: 98%;
    height: 100%;
}

#icon{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: url(../svg/olho_fechado.svg);
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-size: cover;
}

#icon.hide{
    background: url(../svg/olho_aberto.svg);
    background-size: cover;
}

#area_login_sistema .formulario form button{
    margin-top: 10px;
    height: 30px;
    border-radius: 5px;
    outline: none;
    border: none;
    color: white;
    background-color: #4d4dff;
    cursor: pointer;
    transition: all .2s linear;
}

#area_login_sistema .formulario form button:hover{
    background-color: green;
}

@media screen and (min-width: 50em){
    
    #area_login_sistema .botoes_acesso{
        width: 50%;
    }
    
    
    #area_login_sistema .botoes_acesso a{
        width: 60%;
    }

    #area_login_sistema .formulario{
        width: 50%;
    }
}

@media screen and (min-width: 65em){
    
    #area_login_sistema .titulo_portal img{
        width: 12%;
    }
    
    #area_login_sistema .botoes_acesso{
        width: 40%;
    }
    
    #area_login_sistema .formulario{
        width: 40%;
    }
}

@media screen and (min-width: 85em){
    #area_login_sistema .titulo_portal img{
        width: 8%;
    }
    
    #area_login_sistema .botoes_acesso{
        width: 30%;
    }
    
    #area_login_sistema .formulario{
        width: 30%;
    }
}

@media screen and (min-width: 95em){
    #area_login_sistema .titulo_portal img{
        width: 8%;
    }
    
    #area_login_sistema .botoes_acesso{
        width: 20%;
    }
    
    
    #area_login_sistema .formulario{
        width: 20%;
    }
}