#login-mask {
    z-index: 2;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
    border-radius: 10px;
}

#login-mask-firefox {
    z-index: 2;
    -webkit-backdrop-filter: blur(100px);
    background-color: rgba(255, 255, 255, .9);
    backdrop-filter: blur(100px);
    border-radius: 10px;
}

@media only screen and (min-width: 1630px) {
    #login-mask {
        width: 25%;
    }
    #login-mask-firefox {
        width: 25%;
    }
    #login-form-parent {
        display: flex;
        flex-direction: column;
    }
    #login-form {
        width: 90%;
        margin: auto;
    }
}

@media only screen and (max-width: 1630px) {
    #login-mask {
        width: 400px;
    }
    #login-mask-firefox {
        width: 400px;
    }
    #login-form {
        width: 100%;
    }
}

.login-logo {
    height: 220px;
    margin: auto;
}

@media only screen and (min-width: 400px) {
    .login-logo {
        width: 450px;
    }
}

@media only screen and (max-width: 400px) {
    .login-logo {
        width: 380px;
    }
}

.overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    z-index: 1;
    background-color: #f6f1ee;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}