.icon-user-info {
    display: none !important;
}

.wrapper {
    background-color: var(--lightgray-color);
}

.bx-auth {
    position: relative;
    width: 100%;
    height: calc(100vh - 85px);
    height: 100vh;
    display: flex;
}

@media (max-width: 1280px) {
    .bx-auth {
        height: 100vh;
    }
}

.bx-auth__form {
    opacity: 1;
    transition: opacity 0.3s ease 0s;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 15px;
}

.bx-auth__signin {
    max-width: 486px;
}

.bx-auth__signup p {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #669199;
}

.bx-auth__form.hidden {
    opacity: 0;
}

.bx-auth__message {
    transition: all 0.3s ease 0s;
}

.bx-auth__bottom {
    text-align: center;
    margin-top: 28px;
}

.bx-auth__image {
    position: relative;
    width: 50%;
    height: 100%;
    transition: var(--transition);
}

@media (max-width: 992px) {
    .bx-auth__image {
        opacity: 0;
        visibility: hidden;
    }
}

.bx-auth__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bx-auth__promo {
    position: absolute;
    bottom: 56px;
    right: calc(60px + (-60 - 60) * ((100vw - 1279px) / (1600 - 1279)));
    background-color: #fff;
    box-shadow: 0px 18px 23px -12px rgb(0 0 0 / 10%);
    border-radius: 32px;
    max-width: 520px;
    padding: var(--gap);
}

.bx-auth__wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}


.bx-auth__wrapper.tabs {
    margin-bottom: 0;
}


.bx-auth__wrapper-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 304px;
    opacity: 20%;
    pointer-events: none;
}

.bx-auth__body {
    max-width: 550px;
    width: 100%;
}

.bx-auth__body._wide-width {
    max-width: 680px;
}

.bx-auth__body._wide-width .bx-auth__form-bottom {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: var(--gap);
}


.bx-auth__body input:not([type="submit"], [type="checkbox"], [type="button"]):focus {
    border-color: var(--primary-color);
}

.bx-auth__inner {
    max-width: 100%;
    width: 468px;
}

.bx-auth form {
    max-width: 100%;
    width: 100%;
}

.bx-auth-line {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.bx-auth-title {
    font-size: 140%;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 12px;
}

.bx-auth-note {
    margin: 18px 0px 6px 0px;
}

td.bx-auth-label {
    text-align: right;
    vertical-align: top;
}

table.bx-auth-table {
    margin: 8px auto 0;
}

.btn-submit {
    width: 125px;
    height: 40px;
    font-size: 14px;
}

.bx-auth span.bx-auth-secure {
    background-color: #FFFAE3;
    border: 1px solid var(--border-color);
    padding: 2px;
    display: inline-block;
    vertical-align: middle;
}

.bx-auth .bx-auth-secure-icon {
    background-image: url(images/sec.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 19px;
    height: 18px;
}

.bx-auth .bx-auth-secure-unlock {
    background-image: url(images/sec-unlocked.png);
}

.bx-auth__form-bottom {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    font-size: 14px;
}

.bx-auth-input__password {
    position: relative;
}

.bx-auth__password-icon {
    color: #85A7AD;
    position: absolute;
    right: 0;
    top: 0;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.bx-auth__password-icon:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.bx-auth__password-icon._icon-eye-closed::before {
    font-size: 0.5rem;
}

#content .bx-auth-table td {
    border-bottom: none;
}


/*
checkbox-ios
*/
.checkbox-ios {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    font-size: 14px;
    user-select: none;
}

.checkbox-ios .checkbox-ios-switch {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    width: 41px;
    height: 23px;
    border-radius: 31px;
    vertical-align: top;
    background: #eee;
    transition: .2s;
}

.checkbox-ios .checkbox-ios-switch:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    display: inline-block;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05), 0px 4px 7px rgba(0, 0, 0, 0.11);
    transition: .15s;
}

.checkbox-ios input[type=checkbox] {
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.checkbox-ios input[type=checkbox]:not(:disabled):active + .checkbox-ios-switch:before {
    box-shadow: inset 0 0 2px rgba(0, 0, 0, .3);
}

.checkbox-ios input[type=checkbox]:checked + .checkbox-ios-switch {
    background: var(--primary-color);
}

.checkbox-ios input[type=checkbox]:checked + .checkbox-ios-switch:before {
    transform: translateX(18px);
}

/* Hover */
.checkbox-ios input[type="checkbox"]:not(:disabled) + .checkbox-ios-switch {
    cursor: pointer;
    border-color: rgba(0, 0, 0, .3);
}

/* Disabled */
.checkbox-ios input[type=checkbox]:disabled + .checkbox-ios-switch {
    filter: grayscale(70%);
    border-color: rgba(0, 0, 0, .1);
}

.checkbox-ios input[type=checkbox]:disabled + .checkbox-ios-switch:before {
    background: #eee;
}

/* Focus */
.checkbox-ios.focused .checkbox-ios-switch:before {
    box-shadow: inset 0px 0px 4px #ff5623;
}

/* /tabs */

#tab_02 {
    max-width: 600px;
}

.tabs__items {
    display: flex;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    margin-bottom: var(--gap);
}

.tabs__items::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    border-radius: 1px;
}

.tabs__item {
    padding: 10px 18px;
    background: transparent;
    border-bottom: 2px solid #E3E7E8;
    display: block;
    align-items: center;
    justify-content: center;
    color: var(--title-color);
    font-size: 16px;
    cursor: pointer;
}

.tabs__item:hover,
.tabs__item._active {
    text-decoration: none;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tabs__item._active {
    cursor: default;
}

.tabs__block {
    position: relative;
}

.tabs__block p:not(:last-child) {
    margin-bottom: var(--gap);
}

.tabs__block:target {
    display: block;
}

.tabs > #tab_01:target ~ .tabs__items > a[href="#tab_01"],
.tabs > #tab_02:target ~ .tabs__items > a[href="#tab_02"] {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* /tabs */


/* bx-auth__signup */
.bx-auth__signup .b24-form {
    background: transparent;
}

.bx-auth__signup .b24-form-wrapper.b24-form-border-bottom {
    border-bottom: 0 !important;
}

.bx-signup-table {
    max-width: 100%;
    width: 100%;
    display: grid;
    margin-top: var(--gap);
}

.bx-signup__fio {
    display: block;
    width: 100%;
}

@media (min-width: 992px) {
    .bx-signup__fio {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 24px;
    }
}

/* /bx-auth__signup */

.bx-auth__body input:not([type="submit"]) {
    vertical-align: middle;
    height: 56px;
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    padding: 16px;
    color: var(--title-color);
    font-size: 16px;
    margin-bottom: var(--gap);
    outline: none;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .bx-auth__body input:not([type="submit"]) {
        margin-bottom: calc(var(--gap) / 2);
    }
}

.bx-signup__form-confirm {
    display: none;
    background-color: var(--gray-color);
    padding: 18px;
    border-radius: 4px;
    color: var(--primary-color);
}

@media (min-width: 320px) and (max-width: 1279px) {
    .bx-auth__promo {
        display: none;
    }

    .bx-auth__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .bx-auth__wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .bx-auth__body {
        width: 100%;
        padding: 15px;
        background: rgb(255 255 255 / 0.8);
        border-radius: 4px;
        border: 1px solid var(--border-color);
    }

    .tabs__items {
        flex-direction: column;
    }

    .tabs__item {
        width: 100%;
    }
}


@media (max-width: 992px) {
    .bx-auth__wrapper {
        align-items: flex-start;
    }

    .bx-auth__body {
        background: transparent;
        border-color: transparent;
        margin-top: 47px;
    }

    .bx-auth__form {
        max-width: 100%;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .bx-auth__form-bottom ~ div {
        font-size: 13px;
        width: 100%;
    }
}

