html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, .4), rgba(255, 255, 255, 0.4)), 
                url(../images/bg-login-educacao.png) no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
}

.container-fluid {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#header{
    display: flex;
    margin: auto auto 1px auto;
    background-color: #ffffff;
    border-radius: 20px 20px 0px 0px;
    padding: 10px 0px;
    width: 500px;
    box-shadow: 5px 5px 5px rgba(80, 80, 80, 0.678);    
}
#header .col{
    display: flex;
}
#header img{
    width: 50%;
    height: auto;
    margin: auto;
}
.divisor{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#login-screen{
    margin: 0px auto auto auto;  
}
#login-screen{
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 0px 0px 20px 20px;
    width: 500px;
    padding: 30px 100px;
    box-shadow: 5px 5px 5px rgba(80, 80, 80, 0.678);   
}

#login-screen img{ 
    margin-bottom: 30px;
}

#login-screen h2{ 
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 20px;
}
#login-screen form{ 
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
}
#login-screen form table tr{
    display: flex;
    flex-direction: column;
}
#login-screen form table tr label{
    font-size: 10pt;
    font-weight: 400;
    margin-bottom: 0px;
}
#login-screen form table tr td ul{
    margin: 0;
    padding: 0;
    background-color: rgb(245, 163, 163);
    font-size: 10pt;
    border-radius: 5px;
}
#login-screen form table tr td ul li{
    list-style: none;
    padding: 10px;
    text-align: justify;
    line-height: 11pt;
    margin-bottom: 10px;    
}

#login-screen form table tr td, input{
    width: 100%;
    height: 35px;
    background-color: white !important;
    box-shadow: none;
}
#login-screen form table tr td input:focus{
    width: 100%;
    height: 35px;
    background-color: white !important;
    color: -internal-light-dark(rgb(255, 255, 255), white) !important;
}
#login-screen form button{
    margin: 10px auto;
    width: 100%;
    background-color: #3B3B3B;
    border-color: #3B3B3B;;
    color: white;
} 
#login-screen a{
    font-size: 10pt;
}

@media (max-width: 620px){
    body, html{
        height: 131.5%;
        min-width: 620px;
    }
    #header{
        width: 90%;
    }
    #login-screen{
        width: 90%;
        padding: 50px 20%;
    }
    #id_53, .rc-imageselect-payload, #rc-imageselect{
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
     
     }
     
    
}

 