.box {
    display: flex;
    width: 60%;
    height: 78%;
    align-items: center;
    flex-direction: column;
    box-shadow: none;
    animation: none;
}
img{
    width: 30%;
    margin-top: 50px;
}

.login-form{
    width: 60%;
}
form#resetForm {
    width: 50%;
}

h2, label{
    color: white;
}

label{
    font-size: 14px;
}
@media screen and (max-width: 490px) {
    .box{
        width: 100%;
        box-shadow: none;
        animation: none;
    }

    .login-container {
        flex-direction: column;
        padding: 20px;
        justify-content: center;
        height: 90vh;
    }

    .login-form {
        width: 90%;
    }
    form#resetForm {
    width: 90%;
}
    
}