html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
}

#auth {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#auth > .row {
    height: 100%;
    margin: 0;
}

#auth > .row > [class*="col-"] {
    padding: 0;
    height: 100%;
}

#auth #auth-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 6rem;
    overflow: hidden;
    background-color: hsl(0, 0%, 100%);
}

#auth #auth-right {
    height: 100%;
    background-color: #f8fafc;
    background-image: url(/assets/images/ERP.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#auth #auth-left .auth-title {
    font-size: 2rem;
    margin-bottom: 0;
}

#auth #auth-left .auth-subtitle {
    color: #a8aebb;
    font-size: 1.2rem;
    line-height: 1.8rem;
    margin-bottom: 2rem;
}

#auth #auth-left .auth-logo {
    text-align: center;
    margin-bottom: 2.5rem;
}

#auth #auth-left .auth-logo img {
    max-height: 160px;
    width: auto;
}

.form-control,
.btn {
    min-height: 46px;
}

@media (max-width: 991px) {
    html,
    body {
        overflow-y: auto;
    }

    #auth {
        height: auto;
        min-height: 100vh;
    }

    #auth > .row {
        height: auto;
    }

    #auth #auth-left {
        min-height: 100vh;
        padding: 2rem;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    #auth #auth-left {
        padding: 1.5rem;
    }

    #auth #auth-left .auth-logo img {
        max-height: 120px;
    }

    #auth #auth-left .auth-title {
        font-size: 1.8rem;
    }
}

body.theme-dark #auth-right {
    background:
        url(/assets/images/img123.jpg) center center / cover no-repeat,
        linear-gradient(100deg,#2d499d,#3f5491);
}