.scvr-page,
.scvr-page * {
    box-sizing: border-box;
}

.scvr-page {
    --scvr-primary: #b51f2e;
    --scvr-primary-dark: #901723;
    --scvr-primary-soft: #fff3f4;
    --scvr-ink: #171a21;
    --scvr-text: #4f5868;
    --scvr-muted: #7b8493;
    --scvr-border: #e3e7ed;
    --scvr-border-strong: #d3d9e2;
    --scvr-success: #157a4b;
    --scvr-success-soft: #edf8f2;
    --scvr-danger: #b4233f;
    width: 100%;
    min-width: 0;
    min-height: calc(100vh - 130px);
    padding: clamp(30px, 4.8vw, 62px) 18px 70px;
    overflow-x: hidden;
    color: var(--scvr-text);
    background:
        #fff;
}

.scvr-container {
    width: min(1160px, 100%);
    min-width: 0;
    margin: 0 auto;
}

.scvr-breadcrumb {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    margin-bottom: 17px;
    color: var(--scvr-muted);
    font-size: 13px;
    line-height: 1.4;
}

.scvr-breadcrumb a {
    color: var(--scvr-muted);
    text-decoration: none;
    transition: color .2s ease;
}

.scvr-breadcrumb a:hover {
    color: var(--scvr-primary);
}

.scvr-breadcrumb span {
    min-width: 0;
    overflow: hidden;
    color: var(--scvr-ink);
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scvr-breadcrumb svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.scvr-registration-shell {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(25, 31, 42, .08);
    border-radius: 24px;
    background: #fff;
    /* box-shadow: 0 24px 65px rgba(30, 38, 52, .09); */
}

.scvr-progress-panel {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 34px 31px 30px;
    overflow: hidden;
    border-right: 1px solid rgba(181, 31, 46, .1);
    background:
        radial-gradient(circle at 115% 80%, rgba(181, 31, 46, .09), transparent 34%),
        linear-gradient(155deg, #fff 0, #fff6f6 100%);
}

.scvr-progress-panel::after {
    position: absolute;
    right: -115px;
    bottom: -125px;
    width: 270px;
    height: 270px;
    border: 42px solid rgba(181, 31, 46, .035);
    border-radius: 50%;
    content: '';
    pointer-events: none;
}

.scvr-brand {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-width: 0;
    align-items: center;
    align-self: flex-start;
    gap: 11px;
    color: inherit;
    text-decoration: none;
}

.scvr-logo-wrap {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(181, 31, 46, .12);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(181, 31, 46, .09);
}

.scvr-logo-wrap img {
    display: block;
    width: 43px;
    height: 43px;
    object-fit: contain;
}

.scvr-logo-fallback {
    display: none;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: var(--scvr-primary);
    font-size: 14px;
    font-weight: 850;
}

.scvr-brand-copy {
    min-width: 0;
}

.scvr-brand-copy strong,
.scvr-brand-copy small {
    display: block;
}

.scvr-brand-copy strong {
    color: var(--scvr-ink);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1;
}

.scvr-brand-copy small {
    margin-top: 5px;
    color: var(--scvr-muted);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.05px;
    text-transform: uppercase;
}

.scvr-progress-intro {
    position: relative;
    z-index: 1;
    margin-top: 54px;
}

.scvr-kicker,
.scvr-form-step {
       display: block;
    color: var(--scvr-primary);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scvr-progress-intro h2 {
       margin: 11px 0 0;
    color: #000000;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.22;
}

.scvr-progress-intro p {
    margin: 13px 0 0;
    color: var(--scvr-text);
    font-size: 13px;
    line-height: 1.7;
}

.scvr-step-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0;
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
}

.scvr-step {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
    min-height: 70px;
}

.scvr-step:not(:last-child)::after {
    position: absolute;
    top: 51px;
    bottom: -1px;
    left: 17px;
    width: 1px;
    background: #dfe3e9;
    content: '';
}

.scvr-step.is-active:not(:last-child)::after,
.scvr-step.is-complete:not(:last-child)::after {
    background: rgba(181, 31, 46, .32);
}

.scvr-step-number {
    position: relative;
    z-index: 1;
    display: grid;
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    place-items: center;
    border: 1px solid var(--scvr-border-strong);
    border-radius: 50%;
    color: var(--scvr-muted);
    background: #fff;
    font-size: 12px;
    font-weight: 600;
}

.scvr-step-number svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.scvr-step.is-active .scvr-step-number {
    border-color: var(--scvr-primary);
    color: #fff;
    background: var(--scvr-primary);
    box-shadow: 0 6px 15px rgba(181, 31, 46, .2);
}

.scvr-step.is-complete .scvr-step-number {
    border-color: rgba(21, 122, 75, .15);
    color: var(--scvr-success);
    background: var(--scvr-success-soft);
}

.scvr-step-copy {
    min-width: 0;
}

.scvr-step-copy strong,
.scvr-step-copy small {
    display: block;
}

.scvr-step-copy strong {
    color: #384050;
    font-size: 13px;
    font-weight: 600;
}

.scvr-step.is-active .scvr-step-copy strong {
    color: var(--scvr-ink);
}

.scvr-step-copy small {
    margin-top: 4px;
    color: var(--scvr-muted);
    font-size: 11px;
    line-height: 1.35;
}

.scvr-help-note {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: auto;
    padding-top: 40px;
    color: var(--scvr-muted);
    font-size: 11px;
    line-height: 1.5;
}

.scvr-help-note svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: var(--scvr-primary);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.scvr-help-note b,
.scvr-field label span,
.scvr-fieldset legend span {
    color: var(--scvr-primary);
}

.scvr-form-panel {
    min-width: 0;
    padding: 36px clamp(28px, 4vw, 54px) 42px;
    background: #fff;
}

.scvr-form-header {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
    padding-bottom: 25px;
    border-bottom: 1px solid #edf0f3;
}

.scvr-form-header > div {
    min-width: 0;
}

.scvr-form-header h1 {
      margin: 8px 0 0;
    color: var(--scvr-ink);
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
}

.scvr-form-header p {
    margin: 9px 0 0;
    color: #000;
    font-size: 13px;
    line-height: 1.55;
}

.scvr-secure-badge {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    padding: 7px 9px;
    border: 1px solid #dceee5;
    border-radius: 999px;
    color: var(--scvr-success);
    background: #f5fbf8;
    font-size: 10px;
    font-weight: 500;
}

.scvr-secure-badge svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.scvr-alert {
    margin-bottom: 26px;
    padding: 14px 16px;
    border: 1px solid;
    border-radius: 11px;
    font-size: 12px;
    line-height: 1.55;
}

.scvr-alert--danger {
    border-color: #f1cbd3;
    color: #8b1c33;
    background: #fff4f6;
}

.scvr-alert strong {
    display: block;
}

.scvr-alert ul {
    margin: 7px 0 0;
    padding-left: 18px;
}

.scvr-form,
.scvr-form-section {
    min-width: 0;
}

.scvr-section-heading {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.scvr-section-icon {
    display: grid;
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    place-items: center;
    border: 1px solid rgba(181, 31, 46, .1);
    border-radius: 11px;
    color: var(--scvr-primary);
    background: var(--scvr-primary-soft);
}

.scvr-section-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.75;
}

.scvr-section-heading > div {
    min-width: 0;
}

.scvr-section-heading h2 {
       margin: 0;
    color: var(--scvr-ink);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
}

.scvr-section-heading p {
    margin: 4px 0 0;
    color: var(--scvr-muted);
    font-size: 11px;
    line-height: 1.45;
}

.scvr-section-divider {
    height: 1px;
    margin: 34px 0;
    background: #edf0f3;
}

.scvr-grid {
    display: grid;
    min-width: 0;
    gap: 21px;
}

.scvr-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scvr-field,
.scvr-fieldset {
    min-width: 0;
}

.scvr-field--top-space {
    margin-top: 21px;
}

.scvr-field label,
.scvr-fieldset legend {
     display: block;
    width: auto;
    margin: 0 0 8px;
    padding: 0;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.scvr-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.scvr-input-wrap {
    position: relative;
    min-width: 0;
}

.scvr-input-wrap input,
.scvr-input-wrap textarea,
.scvr-input-wrap select,
.scvr-phone-wrap input {
    display: block;
    width: 100%;
    min-width: 0;
    height: 48px;
    outline: 0;
    border: 1px solid var(--scvr-border-strong);
    border-radius: 10px;
    color: var(--scvr-ink);
    background: #fff;
    box-shadow: 0 1px 1px rgba(15, 23, 42, .02);
    font: inherit;
    font-size: 13px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.scvr-input-wrap input,
.scvr-input-wrap select {
    padding: 0 15px 0 44px;
}

.scvr-input-wrap textarea {
    height: auto;
    min-height: 104px;
    padding: 14px 15px 14px 44px;
    line-height: 1.55;
    resize: vertical;
}

.scvr-input-wrap select {
    padding-right: 38px;
    appearance: none;
    cursor: pointer;
}

.scvr-select-wrap::after {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #7b8493;
    border-bottom: 1.5px solid #7b8493;
    content: '';
    pointer-events: none;
    transform: translateY(-66%) rotate(45deg);
}

.scvr-input-wrap.has-action input {
    padding-right: 76px;
}

.scvr-input-wrap.has-password-action input {
    padding-right: 45px;
}

.scvr-input-wrap input::placeholder,
.scvr-input-wrap textarea::placeholder,
.scvr-phone-wrap input::placeholder {
    color: #a1a8b3;
    opacity: 1;
}

.scvr-input-wrap input:focus,
.scvr-input-wrap textarea:focus,
.scvr-input-wrap select:focus,
.scvr-phone-wrap:focus-within {
    border-color: rgba(181, 31, 46, .66);
    box-shadow: 0 0 0 3px rgba(181, 31, 46, .085);
}

.scvr-input-wrap input.is-invalid,
.scvr-input-wrap textarea.is-invalid,
.scvr-input-wrap select.is-invalid,
.scvr-phone-wrap.is-invalid {
    border-color: var(--scvr-danger);
    background-color: #fffafa;
}

.scvr-input-icon {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 15px;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #8a93a1;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    pointer-events: none;
    transform: translateY(-50%);
}

.scvr-input-wrap--textarea .scvr-input-icon {
    top: 16px;
    transform: none;
}

.scvr-inline-action {
    position: absolute;
    top: 50%;
    right: 7px;
    padding: 7px 9px;
    border: 0;
    border-radius: 7px;
    color: var(--scvr-primary);
    background: var(--scvr-primary-soft);
    font: inherit;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(-50%);
    transition: color .2s ease, background-color .2s ease;
}

.scvr-inline-action:hover {
    color: #fff;
    background: var(--scvr-primary);
}

.scvr-field-help {
    display: block;
    margin-top: 6px;
    color: var(--scvr-muted);
    font-size: 10px;
    line-height: 1.4;
}

.scvr-field-help.is-success {
    color: var(--scvr-success);
    font-weight: 680;
}

.scvr-field-help.is-error {
    color: var(--scvr-danger);
    font-weight: 680;
}

.scvr-member-result {
    display: none;
    min-width: 0;
    align-items: center;
    gap: 9px;
    margin-top: 9px;
    padding: 9px 10px;
    border: 1px solid #dceee5;
    border-radius: 9px;
    background: #f6fbf8;
}

.scvr-member-result.is-visible {
    display: flex;
}

.scvr-member-avatar {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    border-radius: 8px;
    color: var(--scvr-success);
    background: #e5f5ec;
    font-size: 9px;
    font-weight: 850;
}

.scvr-member-result > span:nth-child(2) {
    min-width: 0;
}

.scvr-member-result small,
.scvr-member-result strong {
    display: block;
}

.scvr-member-result small {
    color: #6e8479;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .45px;
    text-transform: uppercase;
}

.scvr-member-result strong {
    margin-top: 2px;
    overflow: hidden;
    color: #244536;
    font-size: 11px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scvr-member-result > svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-left: auto;
    fill: none;
    stroke: var(--scvr-success);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.scvr-position-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.scvr-position-option {
    min-width: 0;
    margin: 0 !important;
    cursor: pointer;
}

.scvr-position-option > input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.scvr-position-card {
    display: flex;
    min-width: 0;
    height: 62px;
    align-items: center;
    gap: 8px;
    padding: 8px 9px;
    border: 1px solid var(--scvr-border-strong);
    border-radius: 10px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.scvr-position-option:hover .scvr-position-card {
    border-color: #c8a5aa;
}

.scvr-position-option > input:checked + .scvr-position-card {
    border-color: rgb(0 0 0 / 70%);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgb(0 0 0 / 6%);
}

.scvr-position-icon {
    display: grid;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    place-items: center;
    border-radius: 8px;
}

.scvr-position-icon.is-left {
    color: #365ca8;
    background: #edf3ff;
}

.scvr-position-icon.is-right {
    color: #17734a;
    background: #edf8f3;
}

.scvr-position-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.scvr-position-card > span:nth-child(2) {
    min-width: 0;
}

.scvr-position-card strong,
.scvr-position-card small {
    display: block;
}

.scvr-position-card strong {
    color: #303745;
    font-size: 11px;
    font-weight: 600;
}

.scvr-position-card small {
    margin-top: 2px;
    color: var(--scvr-muted);
    font-size: 8px;
    /* white-space: nowrap; */
}

.scvr-radio-mark {
    position: relative;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    margin-left: auto;
    border: 1.5px solid #bbc2cc;
    border-radius: 50%;
}

.scvr-position-option > input:checked + .scvr-position-card .scvr-radio-mark {
    border-color: #000;
}

.scvr-position-option > input:checked + .scvr-position-card .scvr-radio-mark::after {
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background:#000;
    content: '';
}

.scvr-phone-wrap {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-width: 0;
    height: 48px;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--scvr-border-strong);
    border-radius: 10px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.scvr-phone-wrap input {
    height: 46px;
    padding: 0 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.scvr-country-code {
    display: grid;
    height: 28px;
    place-items: center;
    padding: 0 11px;
    border-right: 1px solid var(--scvr-border);
    color: #404756;
    font-size: 12px;
    font-weight: 720;
}

.scvr-send-otp,
.scvr-verify-otp {
    margin-right: 6px;
    padding: 8px 10px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: var(--scvr-primary);
    font: inherit;
    font-size: 9px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color .2s ease, opacity .2s ease;
}

.scvr-send-otp:hover,
.scvr-verify-otp:hover {
    background: var(--scvr-primary-dark);
}

.scvr-send-otp:disabled,
.scvr-verify-otp:disabled {
    opacity: .62;
    cursor: not-allowed;
}

.scvr-otp-panel {
    margin-top: 20px;
    padding: 17px;
    border: 1px solid #e1e5eb;
    border-radius: 12px;
    background: #fafbfc;
}

.scvr-otp-panel.is-verified {
    border-color: #d2eadc;
    background: #f7fcf9;
}

.scvr-otp-copy strong,
.scvr-otp-copy span {
    display: block;
}

.scvr-otp-copy strong {
    color: var(--scvr-ink);
    font-size: 12px;
    font-weight: 500;
}

.scvr-otp-copy span {
    margin-top: 4px;
    color: var(--scvr-muted);
    font-size: 10px;
    line-height: 1.4;
}

.scvr-otp-row {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    margin-top: 13px;
}

.scvr-otp-inputs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 42px));
    min-width: 0;
    gap: 7px;
}

.scvr-otp-inputs input {
    width: 42px;
    height: 43px;
    outline: 0;
    border: 1px solid var(--scvr-border-strong);
    border-radius: 8px;
    color: var(--scvr-ink);
    background: #fff;
    font: inherit;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.scvr-otp-inputs input:focus {
    border-color: rgba(181, 31, 46, .72);
    box-shadow: 0 0 0 3px rgba(181, 31, 46, .08);
}

.scvr-verify-otp {
    min-height: 39px;
    margin: 0;
    padding-right: 14px;
    padding-left: 14px;
}

.scvr-otp-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: var(--scvr-muted);
    font-size: 9px;
}

.scvr-otp-footer button {
    padding: 0;
    border: 0;
    color: var(--scvr-primary);
    background: none;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.scvr-otp-footer button:disabled {
    color: #a3aab4;
    cursor: not-allowed;
}

.scvr-password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    padding: 0;
    border: 0;
    color: #7d8694;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
}

.scvr-password-toggle svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.scvr-password-toggle .is-hide,
.scvr-password-toggle.is-visible .is-show {
    display: none;
}

.scvr-password-toggle.is-visible .is-hide {
    display: block;
}

.scvr-strength {
    margin-top: 8px;
}

.scvr-strength > span {
    display: block;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: #edf0f3;
}

.scvr-strength i {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #d45165;
    transition: width .25s ease, background-color .25s ease;
}

.scvr-strength small {
    display: block;
    margin-top: 6px;
    color: var(--scvr-muted);
    font-size: 9px;
}

.scvr-form-actions {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 38px;
    padding-top: 27px;
    border-top: 1px solid #edf0f3;
}

.scvr-primary-button,
.scvr-secondary-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    font: inherit;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.scvr-primary-button {
    min-width: 185px;
    padding: 0 20px;
    border: 1px solid #000;
    color: #fff;
    background: #000;
    box-shadow: 0 8px 18px rgb(0 0 0 / 9%);
    cursor: pointer;
}

.scvr-primary-button:hover {
    border-color: #000;
    color: #fff;
    background: #000;
    transform: translateY(-1px);
}

.scvr-secondary-button {
    min-width: 0;
    min-height: auto;
    padding: 7px 0;
    border: 0;
    color: #656f7e;
    background: transparent;
}

.scvr-secondary-button:hover {
    color: var(--scvr-primary);
}

.scvr-primary-button svg,
.scvr-secondary-button svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

@media (max-width: 991.98px) {
    .scvr-registration-shell {
        grid-template-columns: 250px minmax(0, 1fr);
    }

    .scvr-progress-panel {
        padding-right: 24px;
        padding-left: 24px;
    }

    .scvr-form-panel {
        padding-right: 28px;
        padding-left: 28px;
    }

    .scvr-grid--2 {
        grid-template-columns: 1fr;
    }

    .scvr-position-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .scvr-otp-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .scvr-page {
        min-height: auto;
        padding: 23px 13px 44px;
    }

    .scvr-breadcrumb {
        margin-bottom: 13px;
        font-size: 11px;
    }

    .scvr-registration-shell {
        display: block;
        overflow: visible;
        border-radius: 17px;
    }

    .scvr-progress-panel {
        display: block;
        padding: 20px 19px 18px;
        overflow: hidden;
        border-right: 0;
        border-bottom: 1px solid rgba(181, 31, 46, .1);
    }

    .scvr-logo-wrap {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        border-radius: 12px;
    }

    .scvr-logo-wrap img {
        width: 36px;
        height: 36px;
    }

    .scvr-logo-fallback {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .scvr-progress-intro,
    .scvr-help-note {
        display: none;
    }

    .scvr-step-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 17px;
    }

    .scvr-step {
        min-height: auto;
        align-items: flex-start;
        gap: 8px;
    }

    .scvr-step:not(:last-child)::after {
        top: 14px;
        right: -5px;
        bottom: auto;
        left: 29px;
        width: auto;
        height: 1px;
    }

    .scvr-step-number {
        width: 29px;
        height: 29px;
        flex-basis: 29px;
        font-size: 10px;
    }

    .scvr-step-copy strong {
        font-size: 10px;
    }

    .scvr-step-copy small {
        display: none;
    }

    .scvr-form-panel {
        padding: 25px 18px 28px;
    }

    .scvr-form-header {
        gap: 12px;
        margin-bottom: 27px;
        padding-bottom: 20px;
    }

    .scvr-form-header h1 {
        font-size: 23px;
    }

    .scvr-form-header p {
        font-size: 11px;
    }

    .scvr-secure-badge {
        display: none;
    }

    .scvr-section-heading {
        margin-bottom: 20px;
    }

    .scvr-section-divider {
        margin: 29px 0;
    }

    .scvr-grid {
        gap: 18px;
    }

    .scvr-field--top-space {
        margin-top: 18px;
    }

    .scvr-form-actions {
        align-items: stretch;
        flex-direction: column-reverse;
        gap: 10px;
        margin-top: 31px;
        padding-top: 23px;
    }

    .scvr-primary-button,
    .scvr-secondary-button {
        width: 100%;
        min-height: 46px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .scvr-secondary-button {
        border: 1px solid var(--scvr-border);
        background: #fff;
    }
}

@media (max-width: 479.98px) {
    .scvr-form-panel {
        padding-right: 15px;
        padding-left: 15px;
    }

    .scvr-position-card {
        height: 58px;
    }

    .scvr-position-icon {
        display: none;
    }

    .scvr-phone-wrap {
        grid-template-columns: auto minmax(0, 1fr);
        height: auto;
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .scvr-country-code {
        height: 48px;
        border: 1px solid var(--scvr-border-strong);
        border-right: 0;
        border-radius: 10px 0 0 10px;
        background: #fff;
    }

    .scvr-phone-wrap input {
        height: 48px;
        border: 1px solid var(--scvr-border-strong);
        border-radius: 0 10px 10px 0;
        background: #fff;
    }

    .scvr-phone-wrap:focus-within {
        box-shadow: none;
    }

    .scvr-phone-wrap:focus-within .scvr-country-code,
    .scvr-phone-wrap:focus-within input {
        border-color: rgba(181, 31, 46, .66);
    }

    .scvr-send-otp {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 42px;
        margin: 8px 0 0;
    }

    .scvr-otp-panel {
        padding: 14px 11px;
    }

    .scvr-otp-inputs {
        width: 100%;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 5px;
    }

    .scvr-otp-inputs input {
        width: 100%;
        height: 40px;
        font-size: 15px;
    }

    .scvr-verify-otp {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scvr-page *,
    .scvr-page *::before,
    .scvr-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* --------------------------------------------------------------------------
   Functional additions for live lookup, AJAX validation and safe submission.
   Existing visual rules above are intentionally unchanged.
   -------------------------------------------------------------------------- */

[hidden] {
    display: none !important;
}

.scvr-alert--success {
    border-color: #bfe3cf;
    color: #12633e;
    background: #eff9f3;
}

.scvr-alert--info {
    border-color: #cbdcec;
    color: #315b7a;
    background: #f3f8fc;
}

.scvr-field-error {
    display: none;
    margin-top: 6px;
    color: var(--scvr-danger);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;
}

.scvr-field-error.is-visible,
.scvr-field-error:not(:empty) {
    display: block;
}

.scvr-input-wrap.is-invalid input,
.scvr-input-wrap.is-invalid textarea,
.scvr-input-wrap.is-invalid select,
.scvr-position-grid.is-invalid .scvr-position-card {
    border-color: var(--scvr-danger);
    background-color: #fffafa;
}

.scvr-input-wrap.is-valid input,
.scvr-input-wrap.is-valid textarea,
.scvr-input-wrap.is-valid select,
.scvr-phone-wrap.is-valid,
.scvr-position-grid.is-valid .scvr-position-option > input:checked + .scvr-position-card {
    border-color: rgba(21, 122, 75, .58);
    background-color: #fbfefc;
}

.scvr-live-indicator {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 16px;
    height: 16px;
    border: 2px solid #dfe3e8;
    border-top-color: var(--scvr-primary);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    margin-top: -8px;
}

.scvr-live-indicator.is-loading {
    opacity: 1;
    animation: scvr-spin .65s linear infinite;
}

.scvr-network-resolution {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.scvr-auto-member {
    min-width: 0;
    padding: 12px 13px;
    border: 1px solid #dceee5;
    border-radius: 10px;
    background: #f7fbf9;
}

.scvr-auto-member small,
.scvr-auto-member strong,
.scvr-auto-member em {
    display: block;
}

.scvr-auto-member small {
    color: #6e8479;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .35px;
    text-transform: uppercase;
}

.scvr-auto-member strong {
    margin-top: 4px;
    overflow: hidden;
    color: #244536;
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scvr-auto-member em {
    margin-top: 3px;
    color: var(--scvr-muted);
    font-size: 9px;
    font-style: normal;
}

.scvr-draft-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: -8px 0 27px;
    overflow: hidden;
    border: 1px solid var(--scvr-border);
    border-radius: 11px;
    background: var(--scvr-border);
}

.scvr-draft-summary > span {
    min-width: 0;
    padding: 11px 12px;
    background: #fbfcfd;
}

.scvr-draft-summary small,
.scvr-draft-summary strong {
    display: block;
}

.scvr-draft-summary small {
    color: var(--scvr-muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.scvr-draft-summary strong {
    margin-top: 3px;
    overflow: hidden;
    color: var(--scvr-ink);
    font-size: 10px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scvr-terms-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--scvr-text);
    font-size: 11px;
    line-height: 1.55;
    cursor: pointer;
}

.scvr-terms-row input {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin: 1px 0 0;
    accent-color: var(--scvr-primary);
}

.scvr-primary-button.is-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.scvr-primary-button.is-loading svg {
    opacity: 0;
}

.scvr-primary-button.is-loading::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    content: '';
    animation: scvr-spin .65s linear infinite;
}

.scvr-send-otp.is-loading,
.scvr-verify-otp.is-loading {
    opacity: .68;
    pointer-events: none;
}

.scvr-toast {
    position: fixed;
    z-index: 99999;
    right: 20px;
    bottom: 20px;
    max-width: min(390px, calc(100vw - 28px));
    padding: 13px 16px;
    border: 1px solid #cfe8da;
    border-radius: 11px;
    color: #155f3d;
    background: #f2faf5;
    box-shadow: 0 14px 40px rgba(24, 35, 48, .16);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease;
}

.scvr-toast.is-error {
    border-color: #f1cbd3;
    color: #8b1c33;
    background: #fff4f6;
}

.scvr-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes scvr-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 767.98px) {
    .scvr-network-resolution,
    .scvr-draft-summary {
        grid-template-columns: 1fr;
    }

    .scvr-draft-summary {
        margin-top: -5px;
    }

    .scvr-toast {
        right: 14px;
        bottom: 14px;
        left: 14px;
        max-width: none;
    }
}


/* Invalid Referral Code Warning */
.scml-alert--warning {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin-bottom: 20px;
    padding: 13px 15px;
    color: #854d0e;
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    word-break: break-word;
}

.scml-alert--warning::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 21px;
    width: 21px;
    height: 21px;
    margin-top: 1px;
    color: #ffffff;
    background-color: #f59e0b;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 575.98px) {
    .scml-alert--warning {
        gap: 8px;
        padding: 11px 12px;
        font-size: 13px;
        border-radius: 7px;
    }

    .scml-alert--warning::before {
        flex-basis: 19px;
        width: 19px;
        height: 19px;
        font-size: 12px;
    }
}
