

/* Start:/local/components/idbi/register/templates/.default/style.css?17876531968290*/
.register-page {
    width: 1400px;
    max-width: calc(100vw - 40px);
    margin: 0 auto;
    padding: 14px 0 70px;
    color: var(--text-strong, #717171);
}

.register-page__grid {
    display: grid;
    grid-template-columns: 670px 1px 670px;
    grid-template-areas: "form divider benefits";
    width: 1361px;
    column-gap: 10px;
    row-gap: 0;
    align-items: start;
}

.register-page__grid::before {
    content: "";
    grid-area: divider;
    display: block;
    width: 1px;
    min-height: 700px;
    background: var(--line, #e8e4de);
}

.register-page__form-col {
    grid-area: form;
    min-width: 0;
}

.register-page__benefits {
    grid-area: benefits;
    position: relative;
    min-height: 374px;
    overflow: hidden;
    border-radius: 5px;
    background: #F3F3F3;
    padding: 24px 24px 28px;
}

.register-page__benefits-copy {
    display: contents;
}

.register-page__benefits-copy {
    max-width: 360px;
}

.register-page__benefits-eyebrow {
    display: none;
}

.register-page__benefits h2,
.register-page__head h1,
.register-form__section h2 {
    margin: 0;
    font-family: "Days One", var(--font-heading, sans-serif);
    font-weight: 400;
    color: #656565;
    text-transform: uppercase;
    letter-spacing: 0;
}

.register-page__benefits h2 {
    display: none;
}

.register-page__benefits p:not(.register-page__benefits-eyebrow) {
    display: none;
}

.register-page__benefits-link {
    position: absolute;
    left: 24px;
    bottom: 28px;
    font-family: "Days One", var(--font-heading, sans-serif);
    font-size: 14px;
    line-height: 1;
    color: #656565;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.register-page__smile {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    color: var(--accent, #F87599);
    transform: translate(-50%, -50%);
}

.register-page__smile svg {
    display: block;
    width: 61px;
    height: 71px;
}

.register-page__head {
    margin: 0 0 9px;
}

.register-page__head h1 {
    font-size: 24px;
    line-height: 1;
}

.register-page__head p {
    max-width: 410px;
    margin: 6px 0 6px;
    font-size: 13px;
    line-height: 1;
    color: #9f9f9f;
}

.register-page__head a,
.register-page__message a,
.register-check a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.register-page__head a {
    font-size: 14px;
    line-height: 1.2;
    color: #9f9f9f;
}

.register-page__head a:not(:hover) {
    text-decoration-color: transparent;
}

.register-page__head a span {
    color: #9f9f9f;
    text-decoration: none;
}

.register-page__head a,
.register-page__head a:hover {
    color: var(--accent, #F87599);
}

.register-page__message {
    margin: 0 0 18px;
    border-radius: 5px;
    padding: 13px 16px;
    font-size: 14px;
    line-height: 1.35;
}

.register-page__message p {
    margin: 0;
}

.register-page__message p + p {
    margin-top: 5px;
}

.register-page__message--error {
    background: #ffe9ef;
    color: #bd3f62;
}

.register-page__message--success {
    background: #eef6ee;
    color: #4f7a55;
}

.register-form__section {
    margin: 0;
}

.register-form__section + .register-form__section {
    margin-top: 15px;
}

.register-form__section h2 {
    margin-bottom: 9px;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
}

.register-form__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
}

.register-field {
    display: block;
    min-width: 0;
}

.register-field:not(.register-field--half) {
    grid-column: 1 / -1;
}

.register-field__control {
    display: block;
    width: 100%;
    height: 45px;
    border: 1px solid var(--line, #e8e4de);
    border-radius: 5px;
    background: #fff;
    padding: 0 15px;
    color: #656565;
    font: 400 15px/1.2 "Kanit Cyrillic", var(--font-ui, sans-serif);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.register-field__control::placeholder {
    color: #949597;
    opacity: 1;
}

.register-field__control:focus {
    border-color: var(--accent, #F87599);
    box-shadow: 0 0 0 3px rgba(248, 117, 153, .13);
}

.register-avatars {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 0 0 5px;
    scrollbar-width: thin;
    scrollbar-color: #d8d8d8 transparent;
}

.register-avatar {
    position: relative;
    flex: 0 0 164px;
    width: 164px;
    height: 164px;
    cursor: pointer;
}

.register-avatar input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.register-avatar__visual {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    background: #f8f8f8;
    color: #737373;
    font: 400 10px/1 "Kanit Cyrillic", var(--font-ui, sans-serif);
    letter-spacing: 0;
    text-align: center;
    padding-top: 10px;
    transition: border-color .2s ease;
}

.register-avatar input:checked + .register-avatar__visual {
    border-color: var(--accent, #F87599);
    color: var(--accent, #F87599);
}

.register-avatar:focus-within .register-avatar__visual,
.register-avatar:hover .register-avatar__visual {
    border-color: var(--accent, #F87599);
}

.register-form__checks {
    display: grid;
    gap: 7px;
    margin: 14px 0 0;
}

.register-check {
    display: grid;
    grid-template-columns: 15px minmax(0, 1fr);
    gap: 6px;
    align-items: start;
    color: #9f9f9f;
    font-size: 10px;
    line-height: 1;
}

.register-check input {
    width: 12px;
    height: 12px;
    margin: 0;
    accent-color: var(--accent, #F87599);
}

.register-form__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 237px;
    gap: 18px;
    align-items: end;
    margin: 26px 0 0;
}

.register-form__footer p {
    margin: 0;
    color: #949597;
    font-size: 10px;
    line-height: 1;
}

.register-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    border: 0;
    border-radius: 5px;
    background: #f5dadf;
    color: #eb749a;
    font: 400 16px/1 "Days One", var(--font-heading, sans-serif);
    text-transform: uppercase;
    letter-spacing: 0;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.register-form__submit:hover,
.register-form__submit:focus-visible {
    background: var(--accent, #F87599);
    color: #fff;
    outline: none;
}

@media (max-width: 900px) {
    .register-page {
        width: auto;
        max-width: none;
        margin: 0;
        padding: 10px 0 56px;
    }

    .register-page__grid {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .register-page__grid::before {
        display: none;
    }

    .register-page__benefits {
        order: 0;
        width: 100%;
        min-height: 310px;
        padding: 16px 15px 22px;
    }

    .register-page__form-col {
        order: 1;
        width: 100%;
    }

    .register-page__benefits-link {
        left: 15px;
        bottom: 22px;
    }

    .register-page__smile {
        top: 50%;
        transform: translate(-50%, -50%) scale(.92);
    }

    .register-page__head {
        margin-bottom: 28px;
    }

    .register-page__head h1 {
        font-size: 23px;
    }

    .register-page__head p {
        max-width: none;
        margin-top: 6px;
    }

    .register-form__fields {
        grid-template-columns: 1fr;
    }

    .register-field--half {
        grid-column: 1 / -1;
    }

    .register-form__section + .register-form__section {
        margin-top: 25px;
    }

    .register-avatars {
        margin: 0 -10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .register-form__footer {
        grid-template-columns: 1fr;
        gap: 13px;
        align-items: start;
    }

    .register-form__submit {
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    .register-page__head {
        margin-bottom: 28px;
    }

    .register-page__head p,
    .register-page__head a {
        font-size: 14px;
    }

    .register-field__control {
        padding-right: 13px;
        padding-left: 13px;
    }
}

/* End */
/* /local/components/idbi/register/templates/.default/style.css?17876531968290 */
