/* ==========================================================================
   Landing page layout
   ========================================================================== */

.rk-landing-page {
    display: flex;
}

.rk-landing-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 64px 34px;
    display: flex;
}

.rk-landing-main {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(460px, .98fr) minmax(560px, 1.12fr) minmax(420px, .9fr);
    align-items: center;
    gap: 28px;
    min-height: calc(100vh - 104px);
}


/* ==========================================================================
   Hero text
   ========================================================================== */

.rk-landing-hero {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 560px;
    align-self: center;
    transform: translateY(-120px);
}

.rk-hero-pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 46px;
    padding: 0 22px;
    margin-bottom: 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 72, 188, .52);
    background: rgba(255, 72, 188, .065);
    color: #ff62c9;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.01em;
    box-shadow:
        0 0 28px rgba(255, 41, 193, .18),
        inset 0 1px 0 rgba(255, 255, 255, .10);
    backdrop-filter: blur(14px);
}

.rk-hero-pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff6bd1;
    font-size: 21px;
    line-height: 1;
    text-shadow: 0 0 18px rgba(255, 76, 200, .75);
}

.rk-hero-title {
    margin: 0;
    color: #fff;
    font-size: clamp(64px, 4.65vw, 82px);
    line-height: .94;
    letter-spacing: -.055em;
    font-weight: 800;
    text-shadow: 0 18px 54px rgba(0, 0, 0, .40);
}

.rk-title-nowrap {
    white-space: nowrap;
}

.rk-gradient-text {
    color: transparent;
    background: linear-gradient(95deg, #ff3ac6 4%, #c04cff 47%, #498eff 96%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(198, 76, 255, .24));
}

.rk-hero-subtitle {
    max-width: 500px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .70);
    font-size: 19px;
    line-height: 1.55;
    letter-spacing: -.015em;
}

.rk-feature-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.rk-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    color: rgba(255, 255, 255, .90);
    font-size: 15px;
    line-height: 1.22;
    font-weight: 600;
}

.rk-feature-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    font-size: 22px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        0 0 26px rgba(102, 75, 255, .28);
}

.rk-feature-icon-location {
    color: #9b57ff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        0 0 28px rgba(123, 59, 255, .42);
}

.rk-feature-icon-chat {
    color: #318dff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        0 0 28px rgba(32, 126, 255, .42);
}

.rk-feature-icon-heart {
    color: #ff4fc1;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        0 0 28px rgba(255, 62, 178, .42);
}


/* ==========================================================================
   Center visual
   ========================================================================== */

.rk-landing-visual {
    position: relative;
    z-index: 3;
    min-width: 0;
    justify-self: center;
    width: 100%;
}

.rk-couple-stage {
    position: relative;
    width: min(100%, 760px);
    min-height: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rk-couple-image {
    position: relative;
    z-index: 2;
    display: block;
    max-width: none;
    max-height: 820px;
    object-fit: contain;
    object-position: center;
    filter:
        drop-shadow(0 34px 56px rgba(0, 0, 0, .58))
        drop-shadow(0 0 28px rgba(255, 58, 203, .25));
}

.rk-float-card {
    position: absolute;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 164px;
    min-height: 72px;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .055));
    color: #fff;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 600;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, .36),
        inset 0 1px 0 rgba(255, 255, 255, .18),
        0 0 32px rgba(255, 60, 202, .18);
    backdrop-filter: blur(18px);
    pointer-events: none;
}

.rk-float-match {
    top: 13%;
    right: 2%;
    transform: rotate(-3deg);
}

.rk-float-message {
    left: 2%;
    bottom: 18%;
    transform: rotate(-5deg);
}

.rk-float-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    font-size: 22px;
}

.rk-float-icon-heart {
    color: #ff58c7;
    box-shadow: 0 0 28px rgba(255, 75, 200, .36);
}

.rk-float-icon-message {
    color: #55a3ff;
    box-shadow: 0 0 28px rgba(47, 132, 255, .36);
}


/* ==========================================================================
   Signup card
   ========================================================================== */

.rk-signup-card {
    position: relative;
    z-index: 6;
    justify-self: end;
    width: 100%;
    max-width: 470px;
    padding: 38px 38px 34px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .20);
    background:
        radial-gradient(circle at 76% 0%, rgba(255, 49, 195, .28), transparent 38%),
        radial-gradient(circle at 7% 0%, rgba(69, 121, 255, .20), transparent 39%),
        linear-gradient(145deg, rgba(255, 255, 255, .115), rgba(255, 255, 255, .045));
    box-shadow:
        0 26px 80px rgba(0, 0, 0, .44),
        0 0 58px rgba(255, 54, 200, .20),
        inset 0 1px 0 rgba(255, 255, 255, .18);
    backdrop-filter: blur(24px);
}

.rk-signup-card-head {
    margin-bottom: 30px;
}

.rk-signup-card-head h2 {
    margin: 0;
    color: #fff;
    font-size: 34px;
    line-height: 1.07;
    letter-spacing: -.04em;
    font-weight: 800;
}

.rk-signup-card-head p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .70);
    font-size: 16px;
    line-height: 1.35;
}

.rk-signup-form,
.rk-signup-form form,
.rk-signup-form .steps,
.rk-signup-form .step {
    width: 100%;
}


/* ==========================================================================
   Step 1: gender / birthdate / social
   ========================================================================== */

.rk-signup-card .select-group {
    margin-bottom: 24px;
}

.rk-signup-card .select-group-title,
.rk-signup-card .rk-form-label {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .90);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
}

.rk-gender-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.rk-gender-buttons .btn-sex {
    min-height: 54px;
    margin: 0 !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, .17);
    background: rgba(255, 255, 255, .055);
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.rk-gender-buttons .btn-sex:hover {
    background: rgba(255, 255, 255, .085);
    color: #fff;
}

.rk-gender-buttons .btn-sex.active,
.rk-gender-buttons .btn-sex.selected,
.rk-gender-buttons .btn-sex:active,
.rk-gender-buttons .btn-sex:focus {
    color: #fff;
    outline: none;
}

.rk-gender-buttons .btn-sex.btn-male {
    border-color: rgba(52, 137, 255, .62);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .10),
        0 0 22px rgba(40, 123, 255, .15);
}

.rk-gender-buttons .btn-sex.btn-female {
    border-color: rgba(255, 70, 188, .58);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .10),
        0 0 22px rgba(255, 70, 188, .13);
}

.rk-gender-buttons .btn-sex i,
.rk-gender-buttons .btn-sex .fa {
    margin-right: 8px;
}

.rk-birthdate-row {
    margin-left: -6px;
    margin-right: -6px;
}

.rk-birthdate-row > [class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;
}

.rk-signup-card .form-control,
.rk-signup-card select.form-control,
.rk-signup-card input.form-control {
    min-height: 52px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .13);
    background-color: rgba(255, 255, 255, .075);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .075),
        0 12px 26px rgba(0, 0, 0, .16);
}

.rk-signup-card .form-control-lg {
    height: 52px;
    padding: 0 13px;
    font-size: 15px;
}

.rk-signup-card select.form-control option {
    color: #111827;
    background: #fff;
}

.rk-signup-card .form-control:focus {
    border-color: rgba(84, 142, 255, .82);
    background-color: rgba(255, 255, 255, .095);
    color: #fff;
    box-shadow:
        0 0 0 3px rgba(55, 123, 255, .20),
        0 0 24px rgba(55, 123, 255, .18);
}

.rk-signup-card .btn-continue {
    min-height: 58px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(92deg, #1f72ff 0%, #7b35ff 48%, #ff3da9 100%);
    color: #fff !important;
    font-size: 17px;
    font-weight: 800;
    box-shadow:
        0 18px 36px rgba(94, 66, 255, .34),
        0 0 26px rgba(255, 64, 178, .18);
}

.rk-signup-card .btn-continue.btn-disabled,
.rk-signup-card .btn-continue:disabled {
    opacity: .78;
    cursor: default;
}

.rk-social-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 26px 0 16px;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
}

.rk-social-divider::before,
.rk-social-divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(255, 255, 255, .14);
}

.rk-social-divider span {
    flex: 0 0 auto;
    padding: 0 15px;
}

.rk-signup-card #VkIdSdkOAuthList,
.rk-signup-card #YandexIdSdkSuggest {
    width: 100%;
    overflow: visible;
}

.rk-signup-card #VkIdSdkOAuthList > *,
.rk-signup-card #YandexIdSdkSuggest > * {
    max-width: 100%;
}

.rk-signup-card .landing-page-social-auth {
    margin-top: 8px;
}

.rk-signup-card .social-auth,
.rk-signup-card .auth-clients {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.rk-signup-card .auth-client {
    margin: 0 !important;
}

.rk-signup-card .auth-client a {
    min-width: 58px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .075);
    color: #fff !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 14px 26px rgba(0, 0, 0, .20);
}


/* ==========================================================================
   Step 2: fields
   ========================================================================== */

.rk-signup-card .step-2 {
    margin-top: -4px;
}

.rk-signup-card .step-2 .row {
    margin-left: -6px;
    margin-right: -6px;
}

.rk-signup-card .step-2 [class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;
}

.rk-signup-card .form-group {
    position: relative;
    margin-bottom: 14px;
}

.rk-signup-card .step-2 .control-label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.01em;
}

.rk-input-wrap {
    position: relative;
}

.rk-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .46);
    font-size: 15px;
    line-height: 1;
    pointer-events: none;
    text-shadow: 0 0 14px rgba(80, 142, 255, .22);
    transition: color .16s ease, text-shadow .16s ease, opacity .16s ease;
}

.rk-signup-card .rk-input-wrap .form-control,
.rk-signup-card .rk-input-wrap input.form-control {
    height: 48px;
    min-height: 48px;
    padding-left: 46px !important;
    padding-right: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .055));
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        0 12px 24px rgba(0, 0, 0, .16);
}

.rk-signup-card .rk-input-wrap .form-control::placeholder {
    color: rgba(255, 255, 255, .42);
    font-weight: 600;
}

.rk-signup-card .rk-input-wrap .form-control:focus {
    border-color: rgba(78, 146, 255, .88);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .075));
    color: #ffffff;
    box-shadow:
        0 0 0 3px rgba(58, 130, 255, .20),
        0 0 26px rgba(58, 130, 255, .22),
        inset 0 1px 0 rgba(255, 255, 255, .16);
}

.rk-signup-card .rk-form-group.rk-has-value .rk-input-icon,
.rk-signup-card .rk-form-group:focus-within .rk-input-icon {
    color: #69a7ff;
    text-shadow: 0 0 18px rgba(78, 146, 255, .55);
}

.rk-signup-card .rk-form-group.has-error .rk-input-icon,
.rk-signup-card .rk-form-group.rk-invalid .rk-input-icon {
    color: #ff6fae;
    text-shadow: 0 0 18px rgba(255, 77, 150, .55);
}

.rk-signup-card .rk-form-group.has-success .rk-input-icon,
.rk-signup-card .rk-form-group.rk-valid .rk-input-icon {
    color: #79ffbf;
    text-shadow: 0 0 18px rgba(80, 255, 170, .38);
}

.rk-signup-card .rk-form-group.has-error .form-control,
.rk-signup-card .rk-form-group.rk-invalid .form-control {
    border-color: rgba(255, 77, 150, .90) !important;
    background:
        linear-gradient(180deg, rgba(255, 77, 150, .14), rgba(255, 255, 255, .06)) !important;
    box-shadow:
        0 0 0 3px rgba(255, 77, 150, .16) !important,
        0 0 24px rgba(255, 77, 150, .18) !important,
        inset 0 1px 0 rgba(255, 255, 255, .12) !important;
}

.rk-signup-card .rk-form-group.has-success .form-control,
.rk-signup-card .rk-form-group.rk-valid .form-control {
    border-color: rgba(92, 255, 174, .50);
    box-shadow:
        0 0 0 3px rgba(92, 255, 174, .08),
        inset 0 1px 0 rgba(255, 255, 255, .12);
}


/* ==========================================================================
   Selectize / Select2
   ========================================================================== */

.rk-signup-card .selectize-control,
.rk-signup-card .select2-container {
    width: 100% !important;
}

.rk-signup-card .selectize-control.single .selectize-input,
.rk-signup-card .selectize-input {
    min-height: 48px !important;
    height: 48px !important;
    display: flex;
    align-items: center;
    padding: 0 38px 0 46px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .055)) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        0 12px 24px rgba(0, 0, 0, .16) !important;
}

.rk-signup-card .selectize-input.focus,
.rk-signup-card .selectize-input.input-active {
    border-color: rgba(78, 146, 255, .88) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .075)) !important;
    box-shadow:
        0 0 0 3px rgba(58, 130, 255, .20),
        0 0 26px rgba(58, 130, 255, .22),
        inset 0 1px 0 rgba(255, 255, 255, .16) !important;
}

.rk-signup-card .selectize-input input {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.rk-signup-card .selectize-input > div,
.rk-signup-card .selectize-input .item {
    color: #ffffff !important;
}

.rk-signup-card .selectize-dropdown {
    z-index: 50;
    overflow: hidden;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    background: rgba(18, 20, 38, .96) !important;
    color: #ffffff !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .42);
    backdrop-filter: blur(18px);
}

.rk-signup-card .selectize-dropdown .option {
    color: rgba(255, 255, 255, .86) !important;
    background: transparent !important;
    padding: 10px 13px;
    font-weight: 600;
}

.rk-signup-card .selectize-dropdown .option.active,
.rk-signup-card .selectize-dropdown .option:hover,
.rk-signup-card .selectize-dropdown .active {
    background: rgba(73, 142, 255, .20) !important;
    color: #ffffff !important;
}

.rk-signup-card .select2-container--default .select2-selection--single {
    min-height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .075);
    color: #fff;
}

.rk-signup-card .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
    line-height: 48px;
    padding-left: 46px;
}

.rk-signup-card .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}


/* ==========================================================================
   Errors / captcha / terms
   ========================================================================== */

.rk-signup-card .help-block,
.rk-signup-card .invalid-feedback,
.rk-signup-card .error,
.rk-signup-card .text-danger {
    display: block;
    min-height: 0;
    margin: 7px 0 0;
    padding: 0;
    color: #ff8fc0 !important;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
    text-shadow: 0 0 16px rgba(255, 77, 150, .24);
}

.rk-signup-card .help-block:empty,
.rk-signup-card .invalid-feedback:empty,
.rk-signup-card .error:empty {
    display: none;
}

.rk-signup-card .rk-form-group.has-error .help-block:not(:empty),
.rk-signup-card .rk-form-group.rk-invalid .help-block:not(:empty) {
    position: relative;
    display: block;
    padding-left: 18px;
}

.rk-signup-card .rk-form-group.has-error .help-block:not(:empty)::before,
.rk-signup-card .rk-form-group.rk-invalid .help-block:not(:empty)::before {
    content: "!";
    position: absolute;
    left: 0;
    top: 1px;
    width: 13px;
    height: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 77, 150, .18);
    color: #ff8fc0;
    font-size: 9px;
    font-weight: 900;
    box-shadow: 0 0 14px rgba(255, 77, 150, .28);
}

.rk-signup-card .captcha img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
}

.rk-signup-card .terms {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, .56) !important;
    font-size: 11px;
    line-height: 1.35;
}

.rk-signup-card .terms a {
    color: #9ab2ff !important;
    text-decoration: none;
}

.rk-signup-card .terms a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}


/* ==========================================================================
   Step actions
   ========================================================================== */

.rk-step-actions {
    margin-top: 8px;
}

.rk-signup-card .step-2 .btn-back,
.rk-signup-card .step-2 .btn-primary {
    height: 52px;
    min-height: 52px;
}

.rk-signup-card .step-2 .btn-back {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .07);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .10),
        0 12px 24px rgba(0, 0, 0, .14);
}

.rk-signup-card .step-2 .btn-primary {
    border: 0;
    border-radius: 12px;
    background: linear-gradient(92deg, #1f72ff 0%, #7b35ff 48%, #ff3da9 100%);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 900;
    box-shadow:
        0 16px 32px rgba(94, 66, 255, .34),
        0 0 24px rgba(255, 64, 178, .18);
}


/* ==========================================================================
   Desktop responsive
   ========================================================================== */

@media (max-width: 1399px) {
    .rk-landing-shell {
        padding-left: 42px;
        padding-right: 42px;
    }

    .rk-landing-main {
        grid-template-columns: minmax(420px, .96fr) minmax(500px, 1.08fr) minmax(420px, .96fr);
        gap: 22px;
    }

    .rk-hero-title {
        font-size: clamp(56px, 4.35vw, 72px);
    }

    .rk-hero-subtitle {
        font-size: 18px;
    }

    .rk-signup-card {
        max-width: 460px;
        padding: 34px 34px 30px;
    }

    .rk-signup-card-head h2 {
        font-size: 31px;
    }

    .rk-couple-stage {
        min-height: 620px;
    }
}

@media (max-width: 1199px) {
    .rk-landing-shell {
        padding-bottom: 56px;
    }

    .rk-landing-main {
        grid-template-columns: minmax(360px, 1fr) minmax(430px, .95fr);
        grid-template-areas:
            "hero form"
            "visual visual";
        gap: 34px;
        min-height: auto;
        padding-top: 34px;
    }

    .rk-landing-hero {
        grid-area: hero;
        max-width: 560px;
        transform: none;
    }

    .rk-signup-card {
        grid-area: form;
        justify-self: end;
        align-self: center;
    }

    .rk-landing-visual {
        grid-area: visual;
    }

    .rk-couple-stage {
        width: min(100%, 700px);
        min-height: 600px;
    }

    .rk-feature-row {
        flex-wrap: wrap;
        gap: 18px;
    }
}

@media (max-width: 991px) {
    .rk-landing-shell {
        padding: 0 24px 44px;
    }

    .rk-landing-main {
        grid-template-columns: 1fr;
        grid-template-areas:
            "hero"
            "form"
            "visual";
        gap: 30px;
        padding-top: 34px;
    }

    .rk-landing-hero,
    .rk-signup-card,
    .rk-landing-visual {
        justify-self: center;
        width: 100%;
    }

    .rk-landing-hero {
        max-width: 720px;
    }

    .rk-signup-card {
        max-width: 540px;
    }

    .rk-couple-stage {
        max-width: 660px;
        min-height: 500px;
    }

    .rk-hero-title {
        font-size: 56px;
    }
}


/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767px) {
    .rk-landing-page {
        display: block;
        overflow: hidden;
    }

    .rk-landing-shell {
        display: block;
        width: 100%;
        padding: 18px 16px 34px;
    }

    .rk-landing-main {
        display: block;
        min-height: auto;
        padding: 0;
    }

    .rk-landing-hero,
    .rk-landing-visual {
        display: none !important;
    }

    .rk-signup-card {
        display: block;
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
        padding: 24px 18px 22px;
        border-radius: 22px;
        justify-self: auto;
    }

    .rk-signup-card-head {
        margin-bottom: 22px;
    }

    .rk-signup-card-head h2 {
        font-size: 30px;
    }

    .rk-signup-card-head p {
        font-size: 14px;
    }

    .rk-gender-buttons {
        grid-template-columns: 1fr;
    }

    .rk-gender-buttons .btn-sex {
        min-height: 48px;
    }

    .rk-signup-card .form-control,
    .rk-signup-card select.form-control,
    .rk-signup-card input.form-control,
    .rk-signup-card .form-control-lg {
        min-height: 46px;
        height: 46px;
        font-size: 14px;
        padding-left: 9px;
        padding-right: 9px;
    }

    .rk-signup-card .step-2 .row {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .rk-signup-card .step-2 [class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .rk-step-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .rk-step-actions > [class*="col-"] {
        width: auto;
        max-width: none;
        flex: none;
        padding-left: 0;
        padding-right: 0;
    }

    .rk-signup-card .rk-input-wrap .form-control,
    .rk-signup-card .rk-input-wrap input.form-control,
    .rk-signup-card .selectize-control.single .selectize-input,
    .rk-signup-card .selectize-input {
        height: 48px !important;
        min-height: 48px !important;
        font-size: 14px !important;
    }

    .rk-signup-card .step-2 .control-label {
        font-size: 12px;
    }

    .rk-signup-card .rk-form-group-selectize .rk-input-icon,
    .rk-input-icon {
        top: 50%;
        transform: translateY(-50%);
    }
}

/* ==========================================================================
   Registration agreement checkbox
   ========================================================================== */

.rk-registration-agreement {
    width: 100%;
    margin: 6px 0 18px;
}

.rk-registration-agreement-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0 2px;
    cursor: pointer;
}

.rk-registration-agreement-checkbox {
    position: static !important;
    display: inline-block !important;
    flex: 0 0 auto;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    min-height: 18px;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    appearance: auto;
    -webkit-appearance: checkbox;
    accent-color: #ff3da9;
    cursor: pointer;
}

.rk-registration-agreement-text {
    display: block;
    min-width: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;
    text-align: left;
}

.rk-registration-agreement-text a {
    color: #c7d2ff !important;
    text-decoration: none;
    font-weight: 800;
}

.rk-registration-agreement-text a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.rk-signup-card .step-2 .btn-primary.rk-submit-register-disabled,
.rk-signup-card .step-2 .btn-primary:disabled {
    opacity: .48;
    cursor: not-allowed;
    filter: grayscale(.22);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .10);
}

@media (max-width: 767px) {
    .rk-registration-agreement {
        margin: 4px 0 16px;
    }

    .rk-registration-agreement-label {
        gap: 9px;
    }

    .rk-registration-agreement-checkbox {
        width: 17px !important;
        height: 17px !important;
        min-width: 17px;
        min-height: 17px;
        margin-top: 2px !important;
    }

    .rk-registration-agreement-text {
        font-size: 10.5px;
        line-height: 1.38;
    }
}