body.login-container {
    color: #000;
    font-size: 16px;
    line-height: 24px;
    background: #fff;
    text-underline-offset: 3px;
}

h1 {
    font-weight: bold;
    font-size: 40px;
    line-height: 48px;
}

.font-size-14 {
    font-size: 14px;
}

.font-size-32 {
    font-size: 32px;
    line-height: 40px;
}

.min-height-100vh {
    min-height: 100vh;
}

.form-group {
    margin-bottom: 24px;
}

.form-group.submit-group {
    margin-top: 40px;
}

.form-block input {
    height: 48px;
    border-color: #b7b7b7;
    border-radius: 0;
}

.form-control:focus {
    border-color: var(--primary);
}

.form-block label {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 4px;
}

.btn-primary {
    padding: 11px;
    line-height: 24px;
    background: var(--primary);
    border-radius: 0px;
    transition: 500ms;
}

.btn-primary:hover {
    border-color: var(--primary);
    background: linear-gradient(88.96deg, var(--primary) -3.35%, var(--primary) 128.55%);
    transition: 500ms;
}

.forgot-password {
    position: absolute;
    right: 0;
}

.forgot-password a {
    color: #000;
    font-size: 12px;
    text-decoration: underline;
}

.login-container footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin: 0 10px;
    border-top: 1px solid #DFDFDF;
    color: #9E9E9E;
    font-size: 12px;
}

.login-container footer a {
    color: #9E9E9E;
    text-decoration: underline;
}

.right-side {
    background-image: url(/assets/img/bcg-login.jpg);
    background-size: cover;
    /*background: linear-gradient(88.96deg, var(--primary) -3.35%, var(--secondary) 128.55%);*/
    color: #fff;
    padding-bottom: 80px;
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    background-position-x: right;
}


.right-side:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--primary-100);
    opacity: 0.2;
    /*background: url('/assets/img/homepage/slide-1.png') top right no-repeat;
    background-size: contain;*/
}

.right-side img {
    max-width: 300px;
}

.right-side:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 275px;
    width: 100%;
    /*background: url('/assets/backend/img/bg-lines.png') bottom center no-repeat;*/
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.alert {
    position: relative;
}

@media screen and (min-width: 1200px) {
    .right-side {
        padding-left: 0;
    }
}

@media screen and (max-width: 991px) {
    .right-side:before {
        display: none;
    }

    .right-side img {
        margin: 0 auto;
        display: block;
    }

    h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .submit-group {
        margin-bottom: 64px;
    }

    .login-container footer {
        padding: 12px 0;
    }
}

/*SHOW PASSWORD*/

.show-password {
    background-color: transparent;
    border: 0;
    position: absolute;
    top: 28px;
    bottom: 0;
    right: 20px;
    background-image: url('/assets/private-area/icons/hide-password.svg');
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
}

.bi-eye {
    background-image: url('/assets/private-area/icons/show-password.svg');
}

.form-control-container.password-container:after {
    right: 48px;
    /*height: 20px;
    width: 20px;*/
}

.form-control-container:after {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    height: 25px;
    margin: auto;
    position: absolute;
    right: 20px;
    top: 28px;
    width: 25px;
}

.form-control-container {
    position: relative;
}

.form-control-container input {
    background-image: none !important;
}

.form-control-container.verified:after {
    background-image: url("/assets/private-area/icons/check-green.svg");
}
