/* Minification failed. Returning unminified contents.
(35,22): run-time error CSS1039: Token not allowed after unary operator: '-background'
(36,24): run-time error CSS1039: Token not allowed after unary operator: '-border'
(41,22): run-time error CSS1039: Token not allowed after unary operator: '-blue-dark'
 */
#login-form {
    background-image: url('/Assets/media/login/login-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

#login-form:before {
    background: rgba(0, 0, 0, 0.3);
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#login-form form {
    background: #fff;
    border-radius: 10px;
    max-width: 396px;
    width: 100%;
    padding: 32px 28px 37px;
    position: relative;
    z-index: 2;
}

#login-form form img {
    margin-bottom: 36px;
}

#login-form input {
    background: var(--background);
    border-color: var(--border);
    height: 45px;
}

#login-form form .btn-primary {
    background: var(--blue-dark);
    border: 0;
    font-size: 0.875rem
}

#login-form .validation-summary-errors ul {
    margin-bottom: 0;
    list-style: none;
}

