body{
    background: #f2f2f2;
    background-image: url('/static/usuario/img/fundo_login.jpg');
    background-size: cover;
    background-position: top;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -99;
    background-color: rgba(255, 255, 255, 0.5)
}

.home{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 20%;
    margin-top: 25px;
    
}

.cabecalho{
    display: flex;
    width: 100%;
    background-color: #057cc3;
    justify-content: center;
    font-style: oblique;
    border-radius: 10px;
}

.forms{
    display: flex;
    flex-direction: row;
}

.form-box{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.form{
    display: flex;
    flex-direction: column;
    background-color: #057cc3;
    padding: 30px 12%;
    border-radius: 7px;
}

input{
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

label{
   color: white;
}

.container{
    height: 100%;
}

.vr{
    background-color: #b8b8b8;
    height: 250px;
    width: 1px;
}

@media only screen and (max-width: 600px) {
    .forms {
      flex-direction: column;
    }

    .home{
        flex-direction: column;
    }

    .vr{
        background-color: #b8b8b8;
        height: 1px;
        width: 250px; 
    }
  }