.breadcrumbs {
    display: none !important;
}

.auth {
    --container-paddings: 48px;
    --container-gap: 60px;

    padding-top: var(--container-paddings);
    padding-bottom: var(--container-paddings);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--container-gap);
}

.auth__left,
.auth__right {
    width: 100%;
}

.auth__left {
    gap: 24px;
}

.auth__title-block {
    gap: 8px;
}

.auth__left h1 {
    text-align: left;
}

.auth__title-block p {
    color: var(--orange);
}

.auth__left__content {
    width: 100%;
}

.auth-panel {
    width: 100%;
    display: flex;
    align-items: start;
    gap: 32px;
}

.auth-panel__form {
    width: 100%;
    padding-right: 32px;
    border-right: 1px solid #EBEDEF;
}

.auth-form {
    width: 100%;
}

.auth-form__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    height: 0;
    width: 0;
    overflow: hidden;
}

.auth-form__error {
    border-color: #e53935 !important;
}

.auth-form__error-message,
.auth-form__success-message {
    font-family: var(--font-onest);
    font-size: 16px;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
}

.auth-form__error-message {
    color: #e53935;
    background: rgba(229, 57, 53, 0.08);
}

.auth-form__success-message {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
}

.auth-inline-confirm {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(229, 57, 53, 0.08);
    font-family: var(--font-onest);
    text-align: center;
}

.auth-inline-confirm__text {
    margin-bottom: 12px;
    color: #3A3B3C;
    font-size: 14px;
    line-height: 1.3;
}

.auth-inline-confirm__actions {
    display: flex;
    gap: 8px;
}

.auth-inline-confirm__btn {
    flex: 1;
    min-height: 36px;
    border: 0;
    border-radius: 999px;
    font-family: var(--font-onest);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.auth-inline-confirm__btn--confirm {
    background: var(--orange);
    color: var(--bg);
}

.auth-inline-confirm__btn--cancel {
    background: #EBEDEF;
    color: #3A3B3C;
}

.auth-form__fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-field {
    position: relative;
    width: 100%;
}

.auth-field--select {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.select__native {
    display: none;
}

.select__header {
    display: flex;
    cursor: pointer;
}

.select.is-open .dropdown-result {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    user-select: auto;
}

.select.is-open .select__header svg {
    transform: rotateZ(180deg);
}

.select.has-value .select__header__text {
    max-width: 90%;
    width: 100%;
    color: var(--text, #141414);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: left;
}

.dropdown-result__option {
    display: block;
}

.dropdown-result__option.is-active {
    background: var(--border);
    color: var(--text, #141414);
}

.auth-field--password .auth-field__input {
    padding-right: 44px;
}

.auth-field__toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #B5B6B6;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.auth-field__toggle svg {
    display: none;
    width: 100%;
    height: 100%;
}

.auth-field__toggle svg.active {
    display: inline-flex;
}

.auth-field--school-suggest {
    position: relative;
}

.auth-field--school-suggest .auth-school-suggestions {
    top: 100%;
    z-index: 10;
}

.auth-field--school-suggest .auth-school-suggestions:not([hidden]) {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    user-select: auto;
}

.auth-field--school-suggest .auth-school-suggestions[hidden] {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    user-select: none;
}

.auth-field--school-suggest .dropdown-result__option.is-active {
    background: var(--border);
    color: var(--text, #141414);
}

.auth-form__forgot {
    border: 0;
    background: transparent;
    display: block;
    margin-top: 8px;
    margin-left: auto;
    text-align: right;
    font-family: var(--font-onest);
    font-size: 16px;
    font-weight: 500;
    color: var(--orange);
}

.forgot__modal__title,
.forgot__thanks__modal__title {
    display: inline-block;
    padding-right: 20px;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.forgot__modal__subtitle {
    display: inline-block;
    padding-right: 20px;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #919292;
}

.forgot__modal-field {
    margin-bottom: 24px;
    gap: 4px;
}

.forgot__modal__btn {
    --btn-height: 48px;
    --btn-width: 100%;
}

.forgot__thanks__modal__text {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #919292;
}

.forgot__thanks__modal__text.first {
    margin-bottom: 16px;
}

.auth-form__submit {
    width: 100%;
    height: 48px;
    margin-top: 16px;
    border: 0;
    border-radius: 999px;
    background: var(--orange);
    color: var(--bg);
    font-family: var(--font-onest);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

a.auth-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.auth-form__submit:disabled {
    background: var(--orange-disabled);
    cursor: not-allowed;
    pointer-events: none;
    user-select: none;
}

.auth-form__bottom {
    margin-top: 16px;
    font-family: var(--font-onest);
    font-size: 16px;
    font-weight: 500;
    color: #919292;
    text-align: center;
}

.auth-form__link {
    color: var(--orange);
    text-decoration: none;
}

.auth--email-verification .auth-panel__form {
    max-width: 100%;
    padding-right: 0;
    border-right: 0;
}

@media screen and (min-width: 769px) {
    .auth--email-verification {
        justify-content: space-between;
    }

    .auth--email-verification .auth__left {
        flex: 0 1 450px;
        /* max-width: 450px; */
        align-items: flex-start;
    }

    .auth--email-verification .auth__title-block,
    .auth--email-verification .auth__left__content,
    .auth--email-verification .auth-panel {
        max-width: 450px;
    }

    .auth--email-verification .auth__right {
        flex: 0 1 600px;
        max-width: 600px;
        min-width: 0;
    }
}

.auth-email-verification__text {
    margin-top: 16px;
    color: #3A3B3C;
    font-family: var(--font-onest);
    font-size: 18px;
    line-height: 1.45;
}

.auth-email-verification__button {
    margin-top: 24px;
}

.auth-panel__socials {
    width: 100%;
}

.auth-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-socials__btn {
    height: 48px;
    width: 100%;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #EBEDEF;
    background: var(--bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    font-family: var(--font-onest);
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
}

.auth-socials__icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    place-items: center;
}

.auth-socials__icon--text {
    border-radius: 999px;
    border: 1px solid #d8dbdd;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    justify-content: center;
}

.auth-socials__btn--magic {
    cursor: pointer;
}

.auth-panel__divider {
    display: none;
    width: 100%;
    align-items: center;
    gap: 16px;
}

.auth-divider__line {
    width: 100%;
    border-bottom: 1px solid #EBEDEF;
    transform: translateY(100%);
}

.auth-divider__text {
    font-family: var(--font-sf-pro-display);
    font-size: 16px;
    font-weight: 500;
    color: #919292;
    white-space: nowrap;
}

.auth__left__bottom {
    /*max-width: 420px;*/
}

.auth__left__bottom p {
    font-family: var(--font-onest);
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: #919292;
}

.auth__left__bottom__link {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.auth__right {
    position: relative;
    gap: 11px;
    justify-content: space-between;
}

.auth__right .background__img {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.auth__right .background__img:nth-child(1) {
    width: 110px;
    height: 110px;
    right: calc(50% - 30px);
    top: -71px;
    z-index: 2;
}

.auth__right .background__img:nth-child(2) {
    width: 323px;
    height: 323px;
    transform: scale(1.5) translateX(-15%);
    right: 0;
    bottom: -90px;
}

.auth__right__block {
    position: relative;
    width: 100%;
    z-index: 1;
    align-items: center;
}

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

.auth__right__block-1 {
    max-width: 262px;
    gap: 4px;
}

.auth__right__block-1 .auth__right__img:nth-child(1) {
    aspect-ratio: 233 / 233;
    max-width: 233px;
}

.auth__right__block-1 .auth__right__img:nth-child(2) {
    aspect-ratio: 262 / 252;
    border-radius: 12px;
}

.auth__right__block-2 {
    max-width: 290px;
    gap: 22px;
}

.auth__right__block-2 .auth__right__img:nth-child(1) {
    aspect-ratio: 290 / 416;
    max-width: 290px;
    border-radius: 12px;
}

.auth__right__detail-information__card {
    min-height: 91px;
    width: 100%;
    padding: 0 32px;
    justify-content: center;
    color: var(--orange);
    background: var(--light-orange);
    border-radius: 999px;
}

.auth__right__detail-information__card__title {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.36;
}

.auth__right__detail-information__card__title img {
    width: 22px;
    height: 22px;
    margin-left: 4px;
}

.auth__right__detail-information__card__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-wrap: balance;
}

.auth-additional__modal .modal__close-btn {
    display: none;
}

.auth-additional__title {
    display: inline-block;
    margin-bottom: 24px;
    font-family: var(--font-onest);
    color: var(--text);
}

.auth-additional__fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.auth-additional__label {
    display: block;
    margin-bottom: 4px;
    color: #3A3B3C;
}

.auth-additional__newsletter {
    align-items: flex-start;
    margin-bottom: 24px;
}

.auth-additional__newsletter .custom-checkbox {
    margin-top: 1px;
}

.auth-additional__newsletter .checkbox-text {
    color: #3A3B3C;
    font-size: 16px;
    line-height: 1.35;
}

.auth-additional__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-additional__skip {
    border: 1px solid #EBEDEF;
    background: var(--bg);
    color: var(--orange);
}

.new__modal__title {
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    padding-right: 40px;
}

.new__modal__dialog form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.new__modal-field {
    gap: 4px;
}

.new__modal-field__container {
    position: relative;
}

.new__modal-field--password .new__modal-field__input {
    padding-right: 44px;
}

.new-field__toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #B5B6B6;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.new-field__toggle svg {
    display: none;
    width: 100%;
    height: 100%;
}

.new-field__toggle svg.active {
    display: inline-flex;
}

.new__modal__btn {
    --btn-height: 48px;
}

@media screen and (max-width: 1024px) {
    .auth-panel {
        flex-direction: column-reverse;
    }

    .auth-panel__form {
        padding-right: 0;
        border-right: 0;
    }

    .auth-panel__divider {
        display: flex;
    }

    .auth__right .background__img:nth-child(1) {
        width: 65px;
        height: 65px;
        top: -42px;
    }

    .auth__right .background__img:nth-child(2) {
        width: 190px;
        height: 190px;
        bottom: -48px;
        transform: scale(1.5) translateX(-8%);
    }

    .auth__right__detail-information__card {
        min-height: 60px;
        padding: 0 14px;
        gap: 2px;
    }

    .auth__right__detail-information__card__title {
        font-size: 18px;
        line-height: 1.4;
    }

    .auth__right__detail-information__card__title img {
        width: 16px;
        height: 16px;
    }

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

@media screen and (max-width: 768px) {
    .auth {
        --container-paddings: 24px;
        --container-gap: 8px;

        flex-direction: column;
    }

    .auth__left {
        padding-bottom: var(--container-paddings);
    }

    .auth-panel {
        gap: 24px;
    }

    .auth-socials__btn {
        font-size: 18px;
    }

    .auth__left__bottom {
        align-self: center;
        text-align: center;
    }

    .auth-additional__modal .modal__close-btn {
        display: flex;
    }

    .forgot__modal__subtitle,
    .forgot__thanks__modal__text {
        font-size: 16px;
    }

    .auth__right {
        padding-top: var(--container-paddings);
    }

    .auth__right .background__img:nth-child(1) {
        top: calc(-42px + var(--container-paddings));
    }
}
