body{
    background: #bdbdbd;
    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: column;
    width: 100%;
    height: 100%;
    justify-content: top;
    align-items: center;
    
}

.form-login{
    display: flex;
    flex-direction: column;
    width: 30%;
    background-color: #00214d;
    padding: 30px;
    border-radius: 7px;
}

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

label{
   color: white;
}

@media only screen and (max-width: 768px){
    .form-login{
        width: 80%;
    }
} 