.login-interface{
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0; left: 0;
    background-image: url("../images/login-bg-img/pexels-2.jpg");
    background-size: cover;
    display: grid;
    justify-content: center;
    align-content: center;
    text-align: center;
}

.login-interface:before{
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.form-background{
    width: 330px;
    height: 500px;
    background-color: white;
    z-index: 1;
}

.user-avatar{
    padding: 10px;
    margin-top: 10px;
    font-size: 100px;
    color:blue;
}

.user-login-text{
    text-align: center;
    font-weight: bolder;
    margin-bottom: 20px;
    font-size: 18px;
}

.login-form{
    margin-left: 27px;
    display: grid;
    justify-content: left;
    align-content: left;
    align-items: left;
}

.login-form label{
    text-align: left;
    font-size: 16px;
    padding-bottom: 5px;
}

.login-form input{
    font-size: 16px;
    border-style: none;
    background-color: lightsteelblue;
    padding: 10px 0px;
    margin-bottom: 10px;
    border-bottom: 3px solid goldenrod;
}

.login-form .txt{
    display: inline-block;
    width: 260px;
}

.login-form button{
    border-style: none;
    padding: 10px;
    background-color: goldenrod;
    color: white;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 16px;
}

.remember-me{
    display: flex;
    flex-direction: row;
    justify-content: left;
}

.remember-me input[type=checkbox]{
    width: 30px;
    margin-top: 2px;
}

.login-form label[for="forgot-password"] a{
    text-decoration: none;
    color: blue;
}

.sign-up{
    text-align: left;
    margin-left: 27px;
    margin-top: 5px;
}

.sign-up button{
    background-color: blue;
    padding: 10px 20px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

@media only screen and (min-width: 600px){
    .form-background{
        margin-top: 70px;
    }
    
}

@media only screen and (min-width: 768px){
    .form-background{
        margin: auto;
    }

    .form-background{
        transform: scale(1.1);
        margin-top: 70px;
    }
    
}