.auth {
    width: 681px;
    max-height: 100vh;
    border-radius: 5px;
    overflow-y: auto;
    box-shadow: rgba(0, 0, 0, 0.25) 0 14px 28px, rgba(0, 0, 0, 0.22) 0 10px 10px;
    z-index: 2;
}

.auth__steps {
    position: relative;
    display: flex;
    width: 397px;
    margin-bottom: 120px;
    left: 80px;
}

.auth__step-item {
    position: relative;
    gap: 10px;
    width: 119px;
}

.auth__step-text {
    position: absolute;
    text-align: center;
    max-width: 110px;
    font-size: 14px;
    top: 60px;
    transform: translateX(calc(-50% + 23px));
    color: var(--white);
    font-family: AvenirRoman, sans-serif;
}

.auth__step-circle {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--white);
    color: var(--white);
    padding-top: 3px;
}

.auth__step-circle_active {
    color: var(--dark-blue);
    background: var(--white);
}

.auth__step-item:last-child {
    width: 46px;
}

.auth__step-item:not(:last-child) .auth__step-circle:after {
    content: '';
    width: 73px;
    margin-top: 5px;
    position: absolute;
    height: 1px;
    left: 44px;
    bottom: 16px;
    background: var(--white);
}

.auth__background {
    background: linear-gradient(210deg,
    var(--gradient-blue) 0%,
    var(--gradient-light-blue) 100%);
    border-radius: 5px;
}

.auth__top {
    display: flex;
}

.auth__login {
    position: relative;
    border-radius: 5px 0 0 0;
    width: 180px;
    height: 50px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: var(--dark-blue);
}

.auth__buttons {
    display: flex;
    justify-content: space-between;
}

.auth__register {
    background: inherit;
    text-transform: uppercase;
    margin-left: 35px;
}

.auth__content {
    position: relative;
    padding: 30px 110px 0 110px;
    background: white;
    display: flex;
    flex-direction: column;
}

.auth__content_transparent {
    background: inherit;
}

.auth__input-group {
    display: grid;
    gap: 10px;
    background: inherit;
}

.auth__input-group_2-col {
    grid-template-columns: 2.5fr 1fr;
}

.auth__input-group_2-col-reversed {
    grid-template-columns: 1fr 2.5fr;
}

.auth__input-group_3-col {
    grid-template-columns: 1fr 1fr 2.5fr;
}

.auth__company-logo {
    position: relative;
    height: 30px;
    align-self: flex-end;
    left: 80px;
}

.auth__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: transparent;
}

.auth__form-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: inherit;
}

.auth__button {
    width: 180px;
    align-self: flex-end;
}

.auth__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark-blue);
    height: 50px;
    padding: 0 100px;
    border-radius: 0 0 5px 5px;
    font-family: AvenirRoman, sans-serif;
}

.auth_background_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth__text {
    color: var(--gray);
    font-family: AvenirRoman, sans-serif;
}

.auth__text_small {
    font-size: 16px;
}


.auth__select_label {
    font-family: AvenirRoman, sans-serif;
    margin-bottom: -14px;
    font-size: 13px;
}

.auth__text_link {
    text-decoration: underline;
    color: var(--white);
}