#login{
    width: 100vw;
    height: 100vh;
    background-color: #FFF;
    overflow: hidden;
}
#login-logo{
    width: 100vw;
    height: 100vh;
    background-image: url("../img/logo.png");
    background-repeat: no-repeat;
    background-position: center;
}
#login-container, #login-row{
    height: 100vh;
}
#login-acesso-logo{
    margin-bottom: 1rem;
}
#login-acesso-logo p{
    padding: 25px 0px 0px;
    color: #646464;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 13px;
    text-align: center;
}
#login-acesso-img{
    width: 80px;
}
#login-acesso-box{
    width: 430px;
    background-color: rgba(255,255,255,1);
    border-top: 8px solid var(--cor-tema);;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
}
#login-acesso-box .justify-content-center{
    padding: 0px 30px;
}
#form-login::placeholder{
    color: rgba(132,132,132,1);
}
#form-senha::placeholder{
    color: rgba(132,132,132,1);
}
#esqueceu-senha{
    text-align: center;
}
#esqueceu-senha a{
    color: RGBA(0,0,0,0.6);
    font-weight: 500;
    font-size: 12px;
    transition: 0.3s;
}
#esqueceu-senha a:hover{
    color: RGBA(0,0,0,0.8);
}
#form-button{
    border: 0px;
    border-radius: 5px;
    padding: 15px 50px;
    color: #FFF;
    background-color: var(--cor-tema);
    margin-bottom: 35px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
}

@media screen and (max-width: 767px){
    #login-acesso-img {
        max-width: 150px;
    }
    #login-acesso-box {
        width: 300px;
    }
    #login-acesso-box .justify-content-center {
        padding: 0px 20px;
    }
    label{
        font-size: 14px;
    }
    #form-button {
        padding: 10px 40px;
        margin-bottom: 25px;
    }
    #login-acesso-logo p {
        padding: 25px 0px 0px;
        font-size: 11px;
        margin-bottom: 0px;
    }
}