.login-page {
    height: 100vh;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: url(../img/body-bg.jpg) no-repeat 50%;
    background-size: 100% 100%;
    background-attachment: fixed;
    background-position: top
}

.login-left {
    width: calc(100% / 12 * 7);
    flex: 0 0 auto
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .login-left {
        width: calc(100% / 12 * 6)
    }
}

@media only screen and (max-width: 767px) {
    .login-left {
        display: none
    }
}

.login-right {
    width: calc(100% / 12 * 5);
    flex: 0 0 auto;
    padding: 0 10%
}

@media only screen and (min-width: 1280px) and (max-width: 1439px) {
    .login-right {
        padding: 0 5%
    }
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .login-right {
        padding: 0 50px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .login-right {
        width: calc(100% / 12 * 6);
        padding: 0 30px
    }
}

@media only screen and (max-width: 767px) {
    .login-right {
        width: calc(100% / 12 * 12);
        padding: 30px
    }
}

.login-img {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.login-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.login-logo {
    height: 58px
}

.login-logo img {
    height: 100%
}

.login-copyright {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--backend_gray_200)
}

.login-copyright p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.87)
}

.form-box {
    position: relative
}

.form-box:not(:last-child) {
    margin-bottom: 20px
}

.form-box .primary-btn {
    border-radius: 8px;
    font-size: 20px;
    line-height: 1.5;
    line-height: 56px;
    margin-top: 8px
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .form-box .primary-btn {
        font-size: 18px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .form-box .primary-btn {
        font-size: 18px
    }
}

@media only screen and (max-width: 767px) {
    .form-box .primary-btn {
        font-size: 16px
    }
}

.form-box a {
    color: rgba(0, 0, 0, 0.87);
    text-decoration: underline
}

.form-box a:active {
    color: var(--backend_primary)
}

.form-label,
.form-control,
.form-control::placeholder,
.custom-checkbox span {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: rgba(0, 0, 0, 0.87) !important
}

.form-control {
    border-color: var(--backend_gray_200) !important;
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 0 !important;
    background-color: transparent !important;
    height: 62px
}

.form-control::placeholder {
    margin-bottom: 0 !important
}

.form-icon {
    border: 0;
    background-color: transparent;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 20px
}

.custom-checkbox {
    user-select: none;
    cursor: pointer
}

.custom-checkbox input:checked~span::after {
    display: block
}

.custom-checkbox span {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 0 !important;
    --width: 18px
}

.custom-checkbox span::before,
.custom-checkbox span::after {
    width: var(--width);
    height: var(--width);
    border-radius: 4px;
    margin-right: 8px
}

.custom-checkbox span::before {
    content: "";
    border: 1px solid var(--backend_gray_200)
}

.custom-checkbox span::after {
    content: "\f00c";
    background-color: var(--backend_primary);
    position: absolute;
    left: 0;
    font-family: 'FontAwesome';
    color: #fff;
    font-size: 12px;
    line-height: var(--width);
    text-align: center;
    display: none
}