* {
    padding: 0;
    margin: 0;
    border: 0;
    font-family: Geologica;
}
*,
:after,
:before {
    box-sizing: border-box;
}
body {
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
    background-color: #f8f9fc;
    min-height: 100vh;
    position: relative;
    min-height: 100vh;
}

body::after,
body::before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
}

body::after {
    background-image: url(/img/shape-bg-1.svg);
    top: 0;
    right: 0;
}

body::before {
    background-image: url(/img/shape-bg-2.svg);
    bottom: 0;
    left: 0;
}

button,
input,
textarea {
    font-size: inherit;
}

button {
    cursor: pointer;
    color: inherit;
    background-color: transparent;
    position: relative;
}

a {
    color: inherit;
    -webkit-text-decoration: none;
    text-decoration: none;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin-bottom: 0;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

input {
    outline: 0;
}

input[placeholder]:not([data-placeholder-nohiden])::-moz-placeholder {
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

input[placeholder]:not([data-placeholder-nohiden])::placeholder {
    transition: opacity 0.3s;
}

input[placeholder]:not([data-placeholder-nohiden]):focus::-moz-placeholder {
    opacity: 0;
}

input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
    opacity: 0;
}

h1 {
    font-family: Geologica;
    font-weight: 600;
    font-size: 68px;
    line-height: 1.1;
    color: #242a34;
}

.page {
    position: relative;
    min-height: 85vh;
}

.page section {
    position: relative;
    padding-top: 128px;
}

[data-button-tooltip] {
    position: relative;
    transition: 0.4s ease-out;
    z-index: 20;
}

[data-button-tooltip]::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url(../img/help.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
}

[data-button-tooltip] span {
    display: none;
}

[data-button-tooltip]:hover span {
    display: block;
    position: absolute;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #525861;
    min-width: 297px;
    top: -65px;
    left: -130px;
}

[data-button-tooltip]:hover span::before {
    content: "";
    background-color: #f5f5f7;
    width: 12px;
    height: 12px;
    display: block;
    position: absolute;
    bottom: -20px;
    left: 45%;
    z-index: 20;
    border-radius: 0 0 60% 60%;
}

[data-button-tooltip]:hover span::after {
    content: "";
    background-color: #f5f5f7;
    min-width: 297px;
    min-height: 60px;
    border-radius: 8px;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    z-index: -1;
}

.btn-orange-primary {
    font-weight: 550;
    font-size: 16px;
    line-height: 1.6;
    color: #f66b34;
    border: 2px solid #f66b34;
    background-color: transparent;
    border-radius: 8px;
    white-space: nowrap;
    padding: 8px 24px;
}

.btn-orange-primary:hover {
    background-color: #f66b34;
    color: #fff;
}

.btn-orange-primary:hover svg path {
    stroke: #fff;
}

.btn-orange-primary.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
    border: 2px solid transparent;
}

.btn-orange-primary.active {
    background-color: rgba(246, 107, 52, 0.1);
}

.btn-orange-flat {
    font-weight: 550;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    background-color: #f66b34;
    border-radius: 8px;
    white-space: nowrap;
    padding: 8px 24px;
}

.btn-orange-flat:hover {
    background: linear-gradient(90deg, #ff5a19 0, #e64707 100%);
    box-shadow: 0 0 10.1px rgba(246, 107, 52, 0.7);
}

.btn-orange-flat.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
}

.btn-orange-flat.active {
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.05);
}

.btn-orange-flat [disabled="true"],
.btn-orange-flat [disabled],
.btn-orange-flat.disabled {
    color: #fff;
    background-color: #90959e;
    border-color: #90959e;
}

.link-with-arrow {
    position: relative;
    transition: 0.4s ease-in-out;
}

.link-with-arrow::after {
    content: "";
    background-image: url(../../img/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: -25px;
    bottom: -1px;
    transform: scale(0.8);
}

.link-with-arrow:hover::after {
    transform: rotate(180deg) scale(0.8);
}

.header {
    max-width: 1920px;
    margin: 0 auto;
    min-height: 62px;
    padding: 8px 360px;
}

.header__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__list-item {
    display: flex;
}

.header__list-item-link--logo {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header__list-item-link-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 300;
    color: #242a34;
    padding-left: 5px;
    line-height: 1.2;
}

.header__list-item-link-caption::before {
    content: "";
    position: absolute;
    left: calc(0% - 15px);
    height: 46px;
    top: -5px;
    width: 1px;
    background-color: #525861;
    display: block;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 360px 100px;
}

.container .auth {
    z-index: 10;
    background-color: #fff;
    padding: 32px;
    border: 1px solid #d7dbe0;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}

.container .auth__header {
    margin-bottom: 24px;
    text-align: center;
}

.container .auth__header-title {
    font-size: 32px;
}

.container .auth__body {
    display: flex;
    flex-direction: column;
}

.container .auth__body label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
}

.container .auth__body label:first-of-type {
    margin-bottom: 10px;
}

.container .auth__body-desc {
    font-size: 14px;
    color: #525861;
    line-height: 2;
    font-weight: 400;
}

.container .auth__body-input {
    min-width: 524px;
    border-radius: 12px;
    border: 1px solid #d7dbe0;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    padding: 7px 12px;
}

.container .auth__body-input::-moz-placeholder {
    color: #90959e;
}

.container .auth__body-input::placeholder {
    color: #90959e;
}

.container .auth__body-input.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
}

.container .auth__body-input[disabled="true"],
.container .auth__body-input[disabled] {
    border: 1px solid #d7dbe0;
    background-color: #f5f5f7;
    color: #90959e;
}

.container .auth__body-input.filled {
    color: #242a34;
}

.container .auth__body-input:focus {
    border: 1px solid #90959e;
    color: #242a34;
}

.container .auth__body-actions {
    display: flex;
    justify-content: space-between;
    padding-right: 8px;
    margin-top: 18px;
}

.container .auth__body-actions label {
    display: flex;
    flex-direction: row;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
    gap: 10px;
    align-items: center;
}

.container .auth__body-actions-forget {
    font-weight: 550;
    font-size: 16px;
    color: #4766d2;
    line-height: 1.6;
}

.container .auth__body-actions-desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
}

.container .auth__body-input--show {
    position: absolute;
    right: 12px;
    top: 40px;
    z-index: 10;
}

.container .auth__body-caption {
    font-size: 14px;
    position: relative;
    line-height: 1.6;
}

.container .auth__body-caption.required::after {
    content: "*";
    position: absolute;
    color: #f04438;
    font-size: 14px;
}

.container .auth__footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.container .auth__footer-submit {
    padding-top: 12px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 550;
    border-radius: 8px;
    background-color: #4766d2;
    min-height: 50px;
}

.container .auth__footer-submit.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
}
.container .auth__footer-reg {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
}
.container .auth__footer-reg-text {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}
.container .auth__footer-reg-action {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    color: #4766d2;
}
.footer {
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 360px;
    padding-right: 360px;
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #d7dbe0;
    padding-top: 16px;
    padding-bottom: 16px;
}
.footer__inner a,
.footer__inner p {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.3;
    color: #90959e;
}
@media (max-width: 1920px) {
    .footer {
        padding-left: 0;
        padding-right: 0;
    }
    .footer__inner {
        padding-left: 48px;
        padding-right: 48px;
    }
}
@media (max-width: 1800px) {
    .container,
    .footer,
    .header {
        padding-left: 300px;
        padding-right: 300px;
    }
}
@media (max-width: 1750px) {
    .container,
    .footer,
    .header {
        padding-left: 250px;
        padding-right: 250px;
    }
}
@media (max-width: 1700px) {
    .container,
    .footer,
    .header {
        padding-left: 200px;
        padding-right: 200px;
    }
}
@media (max-width: 1600px) {
    .container,
    .footer,
    .header {
        padding-left: 150px;
        padding-right: 150px;
    }
}
@media (max-width: 1440px) {
    .container,
    .footer,
    .header {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (max-width: 1367px) {
    .container,
    .footer,
    .header {
        padding-left: 48px;
        padding-right: 48px;
    }
}
@media (max-width: 1200px) {
    .container .auth__body-input {
        min-width: 608px;
    }
}
@media (max-width: 1000px) {
    .container {
        padding-top: 184px !important;
        padding-bottom: 0 !important;
    }
    .container .auth__footer {
        padding-top: 137px;
        padding-bottom: 10px;
        margin-top: 0;
    }
}
@media (max-width: 910px) {
    [data-button-tooltip]:hover span {
        left: -250px;
    }
}
@media (max-width: 720px) {
    .header {
        padding-left: 24px;
        padding-right: 24px;
    }
    .header__list-item-link-img {
        width: 143px;
    }
    .header__list-item-link-caption::before {
        height: 35px;
        top: 0;
    }
    .header__list-item-link-caption {
        font-size: 12px;
    }
    .container,
    .footer {
        padding-left: 24px;
        padding-right: 24px;
    }
}
@media (max-width: 700px) {
    .container .auth {
        border: none;
        padding: 0;
        background-color: transparent;
    }
    .container .auth__body-input {
        min-width: 302px;
    }
    .container .auth__body-actions-forget {
        font-size: 12px;
    }
}
@media (max-width: 550px) {
    .footer__inner {
        flex-direction: column;
        gap: 12px;
    }
}
@media (max-width: 430px) {
    .header__list-item-link-caption::before {
        left: calc(0% - 10px);
    }
}

.container .reg {
    z-index: 10;
    background-color: #fff;
    padding: 32px;
    border: 1px solid #d7dbe0;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    max-width: 588px;
/*    margin-top: 140px;
    margin-bottom: 257px;*/
}
.container .reg__header {
    margin-bottom: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.container .reg__header-title {
    font-size: 32px;
}
.container .reg__header-desc {
    color: #525861;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 334px;
}
.container .reg__header-step {
    margin-bottom: 22px;
}
.container .reg__header-step-list {
    display: flex;
    gap: 12px;
}
.container .reg__header-step-list-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.container .reg__header-step-list-item:first-of-type::after {
    content: "";
    position: relative;
    height: 1px;
    width: 199.5px;
    background-color: #d7dbe0;
}
.container .reg__header-step-list-item-caption {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    white-space: nowrap;
}
.container .reg__header-step-list-item-ico {
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    width: 24px;
    height: 24px;
    background-image: url(../img/step.svg);
}
.container .reg__header-step-list-item-ico--active {
    background-image: url(../img/step-active.svg);
}
.container .reg__header-step-list-item-ico--success {
    background-image: url(../img/step-success.svg);
}
.container .reg__body {
    display: flex;
    flex-direction: column;
}
.container .reg__body label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
}
.container .reg__body label:first-of-type {
    margin-bottom: 10px;
}
.container .reg__body label:nth-of-type(n + 3) {
    margin-top: 12px;
}
.container .reg__body-desc {
    font-size: 14px;
    color: #525861;
    line-height: 2;
    font-weight: 400;
}
.container .reg__body-col {
    display: flex;
    gap: 24px;
    margin-bottom: 6px;
}
.container .reg__body-col label {
    width: 50%;
}
.container .reg__body-col input {
    min-width: 100%;
}
.container .reg__body-input {
    min-width: 524px;
    border-radius: 12px;
    border: 1px solid #d7dbe0;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    padding: 7px 12px;
}
.container .reg__body-input::-moz-placeholder {
    color: #90959e;
}
.container .reg__body-input::placeholder {
    color: #90959e;
}
.container .reg__body-input.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
}
.container .reg__body-input[disabled="true"],
.container .reg__body-input[disabled] {
    border: 1px solid #d7dbe0;
    background-color: #f5f5f7;
    color: #90959e;
}
.container .reg__body-input.filled {
    color: #242a34;
}
.container .reg__body-input:focus {
    border: 1px solid #90959e;
    color: #242a34;
}
.container .reg__body-input--help {
    position: absolute;
    top: 59%;
    right: 25px;
}
.container .reg__body-actions {
    display: flex;
    justify-content: space-between;
    padding-right: 8px;
    margin-top: 18px;
}
.container .reg__body-actions label {
    display: flex;
    flex-direction: row;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
    gap: 10px;
    align-items: center;
}
.container .reg__body-actions-forget {
    font-weight: 550;
    font-size: 16px;
    color: #4766d2;
    line-height: 1.6;
}
.container .reg__body-actions-desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
}
.container .reg__body-input--show {
    position: absolute;
    right: 12px;
    top: 45%;
    z-index: 10;
}
.container .reg__body-caption {
    font-size: 14px;
    position: relative;
    line-height: 1.6;
}
.container .reg__body-caption.required::after {
    content: "*";
    position: absolute;
    color: #f04438;
    font-size: 14px;
}
.container .reg__footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}
.container .reg__footer-submit {
    padding-top: 12px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 550;
    border-radius: 8px;
    background-color: #4766d2;
    min-height: 50px;
}
.container .reg__footer-submit.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
}
.container .reg__footer-reg {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
}
.container .reg__footer-reg-text {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}
.container .reg__footer-reg-action {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    color: #4766d2;
}
.container .reg__step--2 {
    margin-top: 196px;
    margin-bottom: 211px;
}
.container .reg__step--2 .reg__body label:first-of-type {
    margin-bottom: 12px;
}
.container .reg__step--2 .reg__body-actions {
    flex-direction: column;
}




@media (max-width: 1200px) {
    .container .reg {
        min-width: 672px;
    }
    .container .reg__header-title {
        font-size: 24px;
    }
    .container .reg__body-input {
        min-width: 608px;
    }
    .container .reg__step--2 {
        margin-top: 181px;
        margin-bottom: 196px;
    }
}
@media (max-width: 1000px) {
    .container .reg {
        margin-top: 184px !important;
        margin-bottom: 146px !important;
    }
    .container .reg__footer {
        padding-top: 24px;
        padding-bottom: 10px;
        margin-top: 0;
    }
}
@media (max-width: 910px) {
    [data-button-tooltip]:hover span {
        left: -250px;
    }
}

@media (max-width: 700px) {
    .container .reg {
        border: none;
        padding: 0;
        background-color: transparent;
        min-width: auto;
        max-width: none;
    }
    .container .reg__body-input {
        min-width: 302px;
    }
    .container .reg__body-actions-forget {
        font-size: 12px;
    }
    .container .reg__step--2 {
        margin-top: 24px;
        margin-bottom: 56px;
    }
}
@media (max-width: 580px) {
    .container .reg {
        margin-top: 24px !important;
        margin-bottom: 24px !important;
        width: 100%;
    }
    .container .reg__header-step-list-item:first-of-type::after {
        width: 53px;
    }
    .container .reg__body-input {
        min-width: auto;
        width: 100%;
    }
}