/* =========================================================
   CAST TALENTS
   CLEAN AUTH / REGISTRATION SYSTEM
   ========================================================= */

:root {
    --ct-teal: #118d99;
    --ct-teal-dark: #08717d;
    --ct-teal-soft: #edf8f8;

    --ct-gold: #d5a332;
    --ct-gold-soft: #fbf7ed;

    --ct-coral: #db655e;

    --ct-ink: #122130;
    --ct-text: #445461;
    --ct-muted: #7d8992;

    --ct-line: #e4e9ec;
    --ct-soft: #f6f8f8;
    --ct-white: #ffffff;

    --ct-radius-xl: 28px;
    --ct-radius-lg: 18px;
    --ct-radius-md: 13px;
}


/* =========================
   PAGE
   ========================= */

.ct-register-hero {
    background: #f6f8f8;
    padding: 30px;
    min-height: calc(100vh - 120px);
}

.ct-auth-shell {
    width: min(1320px, 100%);
    min-height: 720px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 38% 62%;

    background: var(--ct-white);
    border: 1px solid #e7ebed;
    border-radius: var(--ct-radius-xl);
    overflow: hidden;

    box-shadow:
        0 28px 80px rgba(28, 48, 58, .09);
}


/* =========================
   LEFT BRAND PANEL
   ========================= */

.ct-auth-brand {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(255,255,255,.22),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #0d7f8b 0%,
            #128f9a 55%,
            #08727d 100%
        );

    color: white;
}

.ct-auth-brand::before {
    content: "";
    position: absolute;

    width: 330px;
    height: 330px;

    right: -150px;
    top: -110px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
}

.ct-auth-brand::after {
    content: "";
    position: absolute;

    width: 280px;
    height: 280px;

    left: -145px;
    bottom: -125px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.ct-auth-brand-content {
    position: relative;
    z-index: 2;

    height: 100%;
    padding: 46px;

    display: flex;
    flex-direction: column;
}

.ct-auth-brand-mark {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;

    font-weight: 800;
    letter-spacing: -.5px;
}

.ct-auth-brand-mark span {
    color: #f0c65b;
    font-size: 24px;
}

.ct-auth-brand-mark strong {
    color: white;
    font-size: 24px;
}

.ct-auth-brand-copy {
    margin-top: auto;
    margin-bottom: 32px;
}

.ct-auth-eyebrow {
    display: block;

    margin-bottom: 16px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;

    color: rgba(255,255,255,.74);
}

.ct-auth-brand-copy h2 {
    max-width: 390px;

    margin: 0 0 18px;

    font-size: clamp(40px, 3.5vw, 57px);
    line-height: .99;
    letter-spacing: -2.2px;

    color: white;
}

.ct-auth-brand-copy h2 em {
    display: block;
    color: #f2c75a;
    font-style: normal;
}

.ct-auth-brand-copy p {
    max-width: 390px;

    margin: 0;

    font-size: 14px;
    line-height: 1.65;

    color: rgba(255,255,255,.82);
}

.ct-auth-brand-points {
    display: grid;
    gap: 12px;

    margin-bottom: 34px;
}

.ct-auth-brand-points > div {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 12.5px;
    font-weight: 600;

    color: rgba(255,255,255,.9);
}

.ct-auth-brand-points i {
    width: 24px;
    height: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.15);
    color: #f3ca63;

    font-size: 10px;
}

.ct-auth-brand-footer {
    margin-top: auto;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .7px;

    color: rgba(255,255,255,.55);
}


/* =========================
   RIGHT FORM PANEL
   ========================= */

.ct-auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;

    background: white;

    padding: 42px 58px;
}

.ct-auth-form-wrap {
    width: min(680px, 100%);
}

.ct-register-card {
    width: 100%;
    margin: 0;
    padding: 0;

    background: transparent;
    border: 0;
    box-shadow: none;
}

.ct-register-card::before,
.ct-register-card__header::before {
    display: none !important;
}


/* =========================
   HEADER
   ========================= */

.ct-register-card__header {
    text-align: left !important;
    margin-bottom: 25px;
}

.ct-register-card__header h1 {
    margin: 0 0 8px;

    color: var(--ct-ink);

    font-size: 38px;
    line-height: 1.06;
    letter-spacing: -1.25px;
    font-weight: 800;
}

.ct-register-card__header p {
    margin: 0;

    color: var(--ct-muted);

    font-size: 13.5px;
    line-height: 1.5;
}


/* =========================
   ERRORS
   ========================= */

.ct-register-card .alert-danger {
    margin: 0 0 18px !important;

    padding: 12px 15px;

    border: 1px solid #f2c8cc;
    border-radius: 12px;

    background: #fff7f7;
    color: #a93f49;

    font-size: 12px;
}


/* =========================
   PROGRESS
   ========================= */

.ct-wizard-intro {
    margin: 0 0 23px;
}

.ct-wizard-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 8px;

    color: #66757f;

    font-size: 11.5px;
    font-weight: 700;
}

.ct-wizard-progress-track {
    width: 100%;
    height: 5px;

    overflow: hidden;

    border-radius: 999px;
    background: #e8edef;
}

.ct-wizard-progress-fill {
    width: 50%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--ct-teal),
            #4ca6a4 70%,
            var(--ct-gold)
        );

    transition: width .3s ease;
}


/* =========================
   STEPS
   ========================= */

.ct-wizard-step {
    display: none;
}

.ct-wizard-step.is-active {
    display: block;
}

.ct-step-heading {
    margin: 0 0 17px;
}

.ct-step-heading > span {
    display: none !important;
}

.ct-step-heading h2 {
    margin: 0 0 4px;

    color: var(--ct-ink);

    font-size: 23px;
    line-height: 1.15;
    letter-spacing: -.45px;
    font-weight: 800;
}

.ct-step-heading p {
    margin: 0;

    color: var(--ct-muted);

    font-size: 12.5px;
    line-height: 1.45;
}


/* =========================
   ACCOUNT TYPE
   ========================= */

.ct-account-type-picker {
    margin: 0 0 15px !important;
    padding: 0;

    background: transparent;
    border: 0;
}

.ct-account-type-picker > .form-label {
    margin: 0 0 8px !important;

    color: var(--ct-ink);

    font-size: 11.5px;
    font-weight: 700 !important;
}

.ct-account-type-picker .row {
    --bs-gutter-x: 10px;
}

.ct-account-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ct-account-tile {
    min-height: 80px;

    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto;
    column-gap: 11px;

    align-items: center;

    padding: 12px 14px;

    cursor: pointer;

    border: 1px solid var(--ct-line);
    border-radius: 14px;

    background: white;

    transition:
        border-color .18s ease,
        background .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.ct-account-tile:hover {
    transform: translateY(-1px);

    border-color: #b9d9dc;

    box-shadow:
        0 8px 22px rgba(18, 73, 79, .06);
}

.ct-account-tile i {
    grid-row: 1 / 3;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--ct-teal-soft);
    color: var(--ct-teal);

    font-size: 15px;
}

.ct-account-tile span {
    align-self: end;

    color: var(--ct-ink);

    font-size: 14px;
    line-height: 1.1;
    font-weight: 800;
}

.ct-account-tile small {
    align-self: start;

    color: var(--ct-muted);

    font-size: 10.5px;
    line-height: 1.25;
}

.ct-account-radio:checked + .ct-account-tile {
    border-color: var(--ct-teal);

    background: var(--ct-teal-soft);

    box-shadow:
        0 0 0 3px rgba(17,141,153,.07);
}


/* =========================
   DOCUMENT NOTE
   ========================= */

.ct-doc-name-note {
    margin: 0 0 14px;
    padding: 8px 11px;

    border: 1px solid #f0dfb3;
    border-radius: 10px;

    background: var(--ct-gold-soft);

    color: #665839;

    font-size: 10.5px;
    line-height: 1.35;
}

.ct-doc-name-note strong {
    color: #a77711;

    font-size: 10px;
    letter-spacing: .25px;
}


/* =========================
   FORM
   ========================= */

#register-form {
    margin-top: 0 !important;
}

#register-form .row.g-3 {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
}

#register-form .form-label {
    display: block;

    margin: 0 0 5px;

    color: var(--ct-ink);

    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
}

#register-form .text-danger {
    color: var(--ct-coral) !important;
}

#register-form .form-control,
#register-form .form-select {
    width: 100%;
    height: 47px;
    min-height: 47px;

    padding: 0 13px;

    border: 1px solid #dce3e6;
    border-radius: var(--ct-radius-md);

    background-color: white;
    color: var(--ct-ink);

    font-size: 12.5px;

    box-shadow: none;

    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

#register-form .form-control::placeholder {
    color: #a5afb6;
}

#register-form .form-control:focus,
#register-form .form-select:focus {
    border-color: var(--ct-teal);

    box-shadow:
        0 0 0 3px rgba(17,141,153,.08);

    outline: 0;
}


/* =========================
   DOB
   ========================= */

.ct-dob-selects {
    display: grid;

    grid-template-columns:
        .7fr 1.25fr .85fr;

    gap: 6px;
}

.ct-modern-select {
    padding-left: 10px !important;
    padding-right: 27px !important;

    font-size: 11.5px !important;
    font-weight: 600;
}

.ct-field-hint {
    display: block;

    margin-top: 4px;

    color: #929da4;

    font-size: 9.5px;
    line-height: 1.3;
}

.ct-field-error {
    display: none;

    margin-top: 4px;

    color: #bd4751;

    font-size: 10px;
    font-weight: 600;
}

.ct-field-error.is-visible {
    display: block;
}

.ct-modern-select.ct-invalid {
    border-color: #bd4751 !important;
}


/* =========================
   PHONE
   ========================= */

#register-form .iti {
    width: 100%;
}

#register-form .iti input {
    width: 100%;
}

#register-form .iti__selected-flag {
    border-radius: 12px 0 0 12px;
}

#register-form .iti__country-list {
    z-index: 9999;
}


/* =========================
   PASSWORD
   ========================= */

.ct-password-wrap {
    position: relative;
}

.ct-password-input {
    padding-right: 47px !important;
}

.ct-password-toggle {
    position: absolute;

    top: 50%;
    right: 6px;

    transform: translateY(-50%);

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 9px;

    background: transparent;
    color: #78868e;

    cursor: pointer;
}

.ct-password-toggle:hover {
    background: var(--ct-soft);
    color: var(--ct-teal);
}

.ct-password-status {
    display: flex;
    align-items: center;
    gap: 5px;

    margin-top: 5px;

    color: #929ca2;

    font-size: 10px;
}

.ct-password-status i {
    color: #c5cdd1;
    font-size: 9px;
}

.ct-password-status.is-valid {
    color: #297b65;
}

.ct-password-status.is-valid i {
    color: #297b65;
}

.ct-password-status.is-invalid {
    color: #bd4751;
}

.ct-password-status.is-invalid i {
    color: #bd4751;
}


/* =========================
   ACTIONS
   ========================= */

.ct-wizard-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-top: 18px;
}

.ct-step1-actions {
    justify-content: flex-end;
}

.ct-wizard-next,
.ct-btn-primary {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px !important;

    border: 0 !important;
    border-radius: 12px !important;

    background: var(--ct-teal) !important;
    color: white !important;

    font-size: 12.5px !important;
    font-weight: 800 !important;

    box-shadow:
        0 9px 22px rgba(17,141,153,.16);

    transition:
        background .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}

.ct-wizard-next:hover,
.ct-btn-primary:hover {
    background: var(--ct-teal-dark) !important;

    transform: translateY(-1px);

    box-shadow:
        0 12px 26px rgba(17,141,153,.2);
}

.ct-wizard-back {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 0 18px;

    border: 1px solid var(--ct-line);
    border-radius: 12px;

    background: white;
    color: var(--ct-text);

    font-size: 12px;
    font-weight: 700;
}

.ct-wizard-signin {
    margin-top: 17px;

    text-align: center;

    color: var(--ct-muted);

    font-size: 11.5px;
}

.ct-wizard-signin a {
    margin-left: 3px;

    color: var(--ct-teal);

    font-weight: 800;
    text-decoration: none;
}


/* =========================
   TURNSTILE
   ========================= */

#ctWizardStep2 .cf-turnstile {
    margin-top: 17px;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1100px) {

    .ct-register-hero {
        padding: 20px;
    }

    .ct-auth-shell {
        grid-template-columns: 34% 66%;
    }

    .ct-auth-brand-content {
        padding: 34px;
    }

    .ct-auth-brand-copy h2 {
        font-size: 40px;
    }

    .ct-auth-form-panel {
        padding: 36px 40px;
    }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 767.98px) {

    .ct-register-hero {
        min-height: auto;

        padding: 0;

        background: white;
    }

    .ct-auth-shell {
        min-height: auto;

        display: block;

        border: 0;
        border-radius: 0;

        box-shadow: none;
    }

    .ct-auth-brand {
        display: none;
    }

    .ct-auth-form-panel {
        display: block;

        padding: 25px 18px 32px;
    }

    .ct-auth-form-wrap {
        width: 100%;
    }

    .ct-register-card__header {
        margin-bottom: 21px;
    }

    .ct-register-card__header h1 {
        font-size: 30px;
        letter-spacing: -.8px;
    }

    .ct-register-card__header p {
        font-size: 12.5px;
    }

    .ct-wizard-intro {
        margin-bottom: 20px;
    }

    .ct-step-heading h2 {
        font-size: 21px;
    }

    .ct-account-type-picker .row {
        --bs-gutter-x: 8px;
    }

    .ct-account-tile {
        min-height: 86px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        padding: 11px;
    }

    .ct-account-tile i {
        width: 29px;
        height: 29px;

        margin-bottom: 6px;

        font-size: 13px;
    }

    .ct-account-tile span {
        font-size: 13px;
    }

    .ct-account-tile small {
        margin-top: 3px;

        font-size: 9.5px;
    }

    #register-form .row.g-3 {
        --bs-gutter-y: 11px;
    }

    #register-form .form-control,
    #register-form .form-select {
        height: 49px;
        min-height: 49px;
    }

    .ct-wizard-actions {
        margin-top: 17px;
    }

    .ct-step1-actions .ct-wizard-next {
        width: 100%;
    }

    #ctWizardStep2 .ct-wizard-actions {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
    }

    #ctWizardStep2 .ct-wizard-back,
    #ctWizardStep2 .ct-btn-primary {
        width: 100%;
    }
}

/* =========================================================
   AUTH SHELL FINAL POLISH v101
   ========================================================= */

/* Hide normal website chrome ONLY on auth page */
body.ct-auth-page > header,
body.ct-auth-page header:has(.home-nav) {
    display: none !important;
}

/*
 Some layouts wrap the included header.
 Target known navigation elements without affecting auth shell.
*/
body.ct-auth-page .home-nav {
    display: none !important;
}

/* Remove any layout space left by hidden navigation */
body.ct-auth-page {
    background: #f4f7f7;
}

body.ct-auth-page .ct-register-hero {
    min-height: 100vh;
    padding: 24px;
    display: flex;
    align-items: center;
}


/* ---------- Actual logo ---------- */

.ct-auth-brand-logo {
    position: relative;
    z-index: 5;

    display: inline-flex;
    align-items: center;

    width: fit-content;
    text-decoration: none;
}

.ct-auth-brand-logo img {
    display: block;

    width: 170px;
    max-width: 100%;
    height: auto;

    object-fit: contain;

    /*
      Existing logo has dark/colored artwork;
      give it a premium light presentation on teal.
    */
    padding: 10px 13px;

    border-radius: 15px;

    background: rgba(255,255,255,.96);

    box-shadow:
        0 12px 28px rgba(0,0,0,.10);
}


/* ---------- Auth top navigation ---------- */

.ct-auth-mobile-top {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    margin-bottom: 26px;
}

.ct-auth-mobile-logo {
    display: none;
}

.ct-auth-top-login {
    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 11.5px;
    color: #7a878f;
}

.ct-auth-top-login a {
    color: var(--ct-teal);

    font-weight: 800;
    text-decoration: none;
}

.ct-auth-top-login a:hover {
    color: var(--ct-teal-dark);
}


/* ---------- Slightly more editorial left panel ---------- */

.ct-auth-brand-content {
    min-height: 690px;
}

.ct-auth-brand-copy h2 {
    max-width: 420px;
}

.ct-auth-brand-copy p {
    max-width: 410px;
}


/* ---------- Right panel ---------- */

.ct-auth-form-panel {
    position: relative;

    flex-direction: column;
    align-items: center;
}

.ct-auth-form-wrap {
    margin-top: auto;
    margin-bottom: auto;
}


/* Remove duplicated bottom sign-in on desktop.
   Top-right auth link now handles this. */
@media (min-width: 768px) {
    .ct-wizard-signin {
        display: none !important;
    }
}


/* ---------- Mobile ---------- */

@media (max-width: 767.98px) {

    body.ct-auth-page .ct-register-hero {
        min-height: 100vh;
        padding: 0;
        align-items: stretch;
    }

    .ct-auth-mobile-top {
        margin-bottom: 25px;

        justify-content: space-between;
    }

    .ct-auth-mobile-logo {
        display: inline-flex;
        align-items: center;
    }

    .ct-auth-mobile-logo img {
        width: 112px;
        height: auto;
        object-fit: contain;
    }

    .ct-auth-top-login {
        font-size: 10.5px;
    }

    .ct-auth-form-panel {
        padding-top: 20px;
    }

    .ct-auth-form-wrap {
        margin: 0;
    }

    .ct-wizard-signin {
        display: none !important;
    }
}

/* =========================================================
   CT REGISTRATION — GLAMOROUS EDITORIAL COLLAGE v103
   LEFT PANEL ONLY
   ========================================================= */

.ct-auth-brand-content {
    position: relative !important;
    padding: 0 0 30px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

/* PHOTO COLLAGE */
.ct-auth-collage {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 315px;
    flex: 0 0 315px;
    overflow: hidden;
    background: #eee;
}

.ct-auth-collage img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.ct-auth-collage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 58%,
            rgba(3, 61, 68, .16) 100%
        );
}

/* GOLD CURVED TRANSITION */
.ct-auth-collage-curve {
    position: relative;
    z-index: 5;
    width: 116%;
    height: 62px;
    flex: 0 0 62px;
    margin: -38px 0 -19px -8%;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    border-top: 3px solid #ddb04d;
    background:
        linear-gradient(
            120deg,
            #075d66 0%,
            #08757d 55%,
            #064c55 100%
        );
    transform: rotate(.8deg);
    box-shadow: 0 -7px 22px rgba(0,0,0,.08);
}

/* LEFT PANEL BACKGROUND */
.ct-auth-brand {
    background:
        linear-gradient(
            145deg,
            #075d66 0%,
            #08737c 48%,
            #05434b 100%
        ) !important;
}

/* LOGO */
.ct-auth-brand-logo {
    position: relative !important;
    z-index: 7 !important;
    width: fit-content !important;
    margin: 0 42px 16px !important;
}

.ct-auth-brand-logo img {
    width: 125px !important;
    max-width: 125px !important;
    padding: 6px 8px !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,.98) !important;
    box-shadow: 0 9px 25px rgba(0,0,0,.12) !important;
}

/* COPY */
.ct-auth-brand-copy {
    position: relative;
    z-index: 7;
    margin: 0 42px 15px !important;
}

.ct-auth-eyebrow {
    margin-bottom: 7px !important;
    color: rgba(255,255,255,.63) !important;
    font-size: 8px !important;
    font-weight: 700 !important;
    letter-spacing: 1.8px !important;
}

.ct-auth-brand-copy h2 {
    max-width: 390px !important;
    margin: 0 0 10px !important;
    color: #fff !important;
    font-size: clamp(30px, 2.5vw, 41px) !important;
    line-height: 1 !important;
    letter-spacing: -1.4px !important;
    font-weight: 700 !important;
}

.ct-auth-brand-copy h2 em {
    color: #e1b34e !important;
    font-style: normal !important;
}

.ct-auth-brand-copy p {
    max-width: 390px !important;
    margin: 0 !important;
    color: rgba(255,255,255,.78) !important;
    font-size: 11px !important;
    line-height: 1.55 !important;
}

/* BENEFITS */
.ct-auth-brand-points {
    position: relative;
    z-index: 7;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    margin: 0 42px 15px !important;
}

.ct-auth-brand-points > div {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    min-height: 27px;
    color: rgba(255,255,255,.9) !important;
    font-size: 10.5px !important;
    font-weight: 600 !important;
}

.ct-auth-brand-points i {
    width: 25px !important;
    height: 25px !important;
    min-width: 25px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(225,179,78,.75) !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.045) !important;
    color: #e4b750 !important;
    font-size: 9px !important;
}

/* FOOTER */
.ct-auth-brand-footer {
    position: relative;
    z-index: 7;
    margin: auto 42px 0 !important;
    padding-top: 11px !important;
    border-top: 1px solid rgba(255,255,255,.11) !important;
    color: rgba(255,255,255,.57) !important;
    font-size: 9px !important;
    letter-spacing: 1px !important;
}

/* MOBILE */
@media (max-width: 767.98px) {

    .ct-auth-brand {
        display: block !important;
        min-height: 0 !important;
    }

    .ct-auth-brand-content {
        min-height: 0 !important;
        padding: 0 !important;
    }

    .ct-auth-collage {
        height: 190px !important;
        flex-basis: 190px !important;
    }

    .ct-auth-collage-curve {
        height: 44px !important;
        flex-basis: 44px !important;
        margin-top: -29px !important;
        margin-bottom: -15px !important;
    }

    .ct-auth-brand-logo,
    .ct-auth-brand-copy,
    .ct-auth-brand-points,
    .ct-auth-brand-footer {
        display: none !important;
    }
}


/* =========================================================
   CT REGISTRATION — GLAMOROUS EDITORIAL COLLAGE v103
   LEFT PANEL ONLY
   ========================================================= */

.ct-auth-brand-content {
    position: relative !important;
    padding: 0 0 30px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

/* PHOTO COLLAGE */
.ct-auth-collage {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 315px;
    flex: 0 0 315px;
    overflow: hidden;
    background: #eee;
}

.ct-auth-collage img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.ct-auth-collage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 58%,
            rgba(3, 61, 68, .16) 100%
        );
}

/* GOLD CURVED TRANSITION */
.ct-auth-collage-curve {
    position: relative;
    z-index: 5;
    width: 116%;
    height: 62px;
    flex: 0 0 62px;
    margin: -38px 0 -19px -8%;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    border-top: 3px solid #ddb04d;
    background:
        linear-gradient(
            120deg,
            #075d66 0%,
            #08757d 55%,
            #064c55 100%
        );
    transform: rotate(.8deg);
    box-shadow: 0 -7px 22px rgba(0,0,0,.08);
}

/* LEFT PANEL BACKGROUND */
.ct-auth-brand {
    background:
        linear-gradient(
            145deg,
            #075d66 0%,
            #08737c 48%,
            #05434b 100%
        ) !important;
}

/* LOGO */
.ct-auth-brand-logo {
    position: relative !important;
    z-index: 7 !important;
    width: fit-content !important;
    margin: 0 42px 16px !important;
}

.ct-auth-brand-logo img {
    width: 125px !important;
    max-width: 125px !important;
    padding: 6px 8px !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,.98) !important;
    box-shadow: 0 9px 25px rgba(0,0,0,.12) !important;
}

/* COPY */
.ct-auth-brand-copy {
    position: relative;
    z-index: 7;
    margin: 0 42px 15px !important;
}

.ct-auth-eyebrow {
    margin-bottom: 7px !important;
    color: rgba(255,255,255,.63) !important;
    font-size: 8px !important;
    font-weight: 700 !important;
    letter-spacing: 1.8px !important;
}

.ct-auth-brand-copy h2 {
    max-width: 390px !important;
    margin: 0 0 10px !important;
    color: #fff !important;
    font-size: clamp(30px, 2.5vw, 41px) !important;
    line-height: 1 !important;
    letter-spacing: -1.4px !important;
    font-weight: 700 !important;
}

.ct-auth-brand-copy h2 em {
    color: #e1b34e !important;
    font-style: normal !important;
}

.ct-auth-brand-copy p {
    max-width: 390px !important;
    margin: 0 !important;
    color: rgba(255,255,255,.78) !important;
    font-size: 11px !important;
    line-height: 1.55 !important;
}

/* BENEFITS */
.ct-auth-brand-points {
    position: relative;
    z-index: 7;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    margin: 0 42px 15px !important;
}

.ct-auth-brand-points > div {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    min-height: 27px;
    color: rgba(255,255,255,.9) !important;
    font-size: 10.5px !important;
    font-weight: 600 !important;
}

.ct-auth-brand-points i {
    width: 25px !important;
    height: 25px !important;
    min-width: 25px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(225,179,78,.75) !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.045) !important;
    color: #e4b750 !important;
    font-size: 9px !important;
}

/* FOOTER */
.ct-auth-brand-footer {
    position: relative;
    z-index: 7;
    margin: auto 42px 0 !important;
    padding-top: 11px !important;
    border-top: 1px solid rgba(255,255,255,.11) !important;
    color: rgba(255,255,255,.57) !important;
    font-size: 9px !important;
    letter-spacing: 1px !important;
}

/* MOBILE */
@media (max-width: 767.98px) {

    .ct-auth-brand {
        display: block !important;
        min-height: 0 !important;
    }

    .ct-auth-brand-content {
        min-height: 0 !important;
        padding: 0 !important;
    }

    .ct-auth-collage {
        height: 190px !important;
        flex-basis: 190px !important;
    }

    .ct-auth-collage-curve {
        height: 44px !important;
        flex-basis: 44px !important;
        margin-top: -29px !important;
        margin-bottom: -15px !important;
    }

    .ct-auth-brand-logo,
    .ct-auth-brand-copy,
    .ct-auth-brand-points,
    .ct-auth-brand-footer {
        display: none !important;
    }
}


/* ==========================================================
   CAST TALENTS AUTH — CINEMATIC REEL + WHITE EDITORIAL v104
   LEFT PANEL ONLY
   ========================================================== */

.ct-auth-brand {
    background: #ffffff !important;
    color: #161616 !important;
}

.ct-auth-brand::before,
.ct-auth-brand::after {
    display: none !important;
}

.ct-auth-brand-content {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 690px !important;
    height: 100% !important;
    padding: 0 0 32px !important;
    overflow: hidden !important;
    background: #fff !important;
}


/* ==============================
   CONTINUOUS FILM REEL
   ============================== */

.ct-auth-reel {
    position: relative;
    width: 100%;
    height: 315px;
    flex: 0 0 315px;
    overflow: hidden;
    background: #111;
}

/* subtle cinematic edge */
.ct-auth-reel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    box-shadow:
        inset 0 -30px 35px rgba(0,0,0,.08),
        inset 0 0 0 1px rgba(0,0,0,.04);
}

.ct-auth-reel-track {
    display: flex;
    width: max-content;
    height: 100%;
    will-change: transform;
    animation: ctReelMove 28s linear infinite;
}

.ct-auth-reel-set {
    display: flex;
    height: 100%;
    flex-shrink: 0;
}

.ct-auth-reel-shot {
    position: relative;
    width: 205px;
    height: 100%;
    flex: 0 0 205px;
    overflow: hidden;
    background: #eee;
}

.ct-auth-reel-shot + .ct-auth-reel-shot {
    border-left: 3px solid #fff;
}

.ct-auth-reel-shot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.01);
}

/* continuous, no stop / no jump */
@keyframes ctReelMove {
    from {
        transform: translate3d(0,0,0);
    }

    to {
        transform: translate3d(-50%,0,0);
    }
}


/* ==============================
   GOLD EDITORIAL DIVIDER
   ============================== */

.ct-auth-reel + .ct-auth-wordmark {
    margin-top: 0 !important;
}

.ct-auth-reel::before {
    content: "";
    position: absolute;
    z-index: 4;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            #c79a3b 16%,
            #e5c36d 50%,
            #c79a3b 84%,
            transparent 100%
        );
}


/* ==============================
   CLEAN TEXT WORDMARK
   ============================== */

.ct-auth-wordmark {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 30px 42px 13px;
    line-height: 1;
}

.ct-auth-wordmark-cast {
    color: #171717;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.ct-auth-wordmark-talents {
    color: #171717;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1.8px;
}


/* ==============================
   WHITE EDITORIAL COPY
   ============================== */

.ct-auth-brand-copy {
    position: relative;
    z-index: 5;
    margin: 0 42px 17px !important;
}

.ct-auth-eyebrow {
    margin-bottom: 8px !important;
    color: #9b7a34 !important;
    font-size: 8px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    letter-spacing: 1.8px !important;
}

.ct-auth-brand-copy h2 {
    max-width: 390px !important;
    margin: 0 0 11px !important;
    color: #171717 !important;
    font-size: clamp(31px, 2.55vw, 42px) !important;
    line-height: .99 !important;
    letter-spacing: -1.5px !important;
    font-weight: 700 !important;
}

.ct-auth-brand-copy h2 em {
    color: #b88a2f !important;
    font-style: normal !important;
    font-weight: 700 !important;
}

.ct-auth-brand-copy p {
    max-width: 400px !important;
    margin: 0 !important;
    color: #626262 !important;
    font-size: 11px !important;
    line-height: 1.6 !important;
}


/* ==============================
   BENEFITS
   ============================== */

.ct-auth-brand-points {
    position: relative;
    z-index: 5;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 5px !important;
    margin: 0 42px 17px !important;
}

.ct-auth-brand-points > div {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    min-height: 27px;
    color: #292929 !important;
    font-size: 10.5px !important;
    line-height: 1.25 !important;
    font-weight: 600 !important;
}

.ct-auth-brand-points i {
    width: 25px !important;
    height: 25px !important;
    min-width: 25px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(184,138,47,.48) !important;
    border-radius: 50% !important;
    background: #fffaf0 !important;
    color: #ad812a !important;
    font-size: 9px !important;
}


/* ==============================
   FOOTER
   ============================== */

.ct-auth-brand-footer {
    position: relative;
    z-index: 5;
    margin: auto 42px 0 !important;
    padding-top: 12px !important;
    border-top: 1px solid #ededed !important;
    color: #8a8a8a !important;
    font-size: 9px !important;
    line-height: 1.3 !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
}

.ct-auth-brand-footer::before {
    content: "";
    display: block;
    width: 38px;
    height: 2px;
    margin-bottom: 9px;
    border-radius: 99px;
    background: #c99a3a;
}


/* ==============================
   TABLET
   ============================== */

@media (min-width:768px) and (max-width:1100px) {

    .ct-auth-reel {
        height: 285px;
        flex-basis: 285px;
    }

    .ct-auth-reel-shot {
        width: 175px;
        flex-basis: 175px;
    }

    .ct-auth-wordmark,
    .ct-auth-brand-copy,
    .ct-auth-brand-points {
        margin-left: 28px !important;
        margin-right: 28px !important;
    }

    .ct-auth-brand-footer {
        margin-left: 28px !important;
        margin-right: 28px !important;
    }

    .ct-auth-brand-copy h2 {
        font-size: 30px !important;
    }
}


/* ==============================
   MOBILE
   Compact moving reel above form
   ============================== */

@media (max-width:767.98px) {

    .ct-auth-brand {
        display: block !important;
        min-height: 0 !important;
        background: #fff !important;
    }

    .ct-auth-brand-content {
        min-height: 0 !important;
        padding: 0 !important;
    }

    .ct-auth-reel {
        height: 185px !important;
        flex-basis: 185px !important;
    }

    .ct-auth-reel-shot {
        width: 125px !important;
        flex-basis: 125px !important;
    }

    .ct-auth-reel-track {
        animation-duration: 24s;
    }

    .ct-auth-wordmark,
    .ct-auth-brand-copy,
    .ct-auth-brand-points,
    .ct-auth-brand-footer,
    .ct-auth-brand-logo,
    .ct-auth-collage,
    .ct-auth-collage-curve {
        display: none !important;
    }
}


/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .ct-auth-reel-track {
        animation-play-state: paused;
    }
}


/* CT 10-IMAGE REEL v105 */
.ct-auth-reel-track {
    animation-duration: 50s !important;
}

/* slightly more cinematic photo proportions */
.ct-auth-reel-shot {
    width: 205px;
    flex-basis: 205px;
}

@media (max-width:767.98px) {
    .ct-auth-reel-track {
        animation-duration: 44s !important;
    }
}

/* ==========================================================
   CT LEFT PANEL FINAL POLISH v106
   White editorial + teal accents + corrected spacing
   ========================================================== */

.ct-auth-brand,
.ct-auth-brand-content {
    background: #ffffff !important;
}

/* REEL */
.ct-auth-reel {
    width: 100% !important;
    height: 315px !important;
    flex: 0 0 315px !important;
    margin: 0 !important;
}

.ct-auth-reel-track {
    animation-duration: 45s !important;
}

/* Remove gold reel line */
.ct-auth-reel::before {
    background: #1597a1 !important;
    height: 2px !important;
}

/* CONTENT — tighter and better balanced */
.ct-auth-brand-copy {
    margin: 30px 50px 20px !important;
    padding: 0 !important;
}

.ct-auth-brand-copy h2 {
    max-width: 390px !important;
    margin: 0 0 14px !important;

    color: #151515 !important;

    font-size: clamp(34px, 2.6vw, 45px) !important;
    line-height: .98 !important;
    letter-spacing: -1.7px !important;
}

.ct-auth-brand-copy h2 em {
    color: #1597a1 !important;
    font-style: normal !important;
}

/* Description */
.ct-auth-brand-copy p {
    max-width: 410px !important;
    margin: 0 !important;

    color: #62676a !important;

    font-size: 12px !important;
    line-height: 1.65 !important;
}

/* POINTS */
.ct-auth-brand-points {
    margin: 0 50px 22px !important;
    gap: 9px !important;
}

.ct-auth-brand-points > div {
    min-height: 29px !important;

    gap: 11px !important;

    color: #252525 !important;

    font-size: 11px !important;
    line-height: 1.35 !important;
    font-weight: 600 !important;
}

.ct-auth-brand-points i {
    width: 27px !important;
    height: 27px !important;
    min-width: 27px !important;

    border: 1px solid rgba(21,151,161,.30) !important;

    background: rgba(21,151,161,.07) !important;

    color: #1597a1 !important;
}

/* FOOTER */
.ct-auth-brand-footer {
    margin: auto 50px 0 !important;

    padding-top: 15px !important;

    border-top: 1px solid #eeeeee !important;

    color: #858585 !important;
}

.ct-auth-brand-footer::before {
    width: 42px !important;
    height: 2px !important;

    margin-bottom: 10px !important;

    background: #1597a1 !important;
}

/* Remove any remaining gold styling in left content */
.ct-auth-brand-content {
    --ct-left-accent: #1597a1;
}

/* TABLET */
@media (min-width:768px) and (max-width:1100px) {

    .ct-auth-brand-copy {
        margin:
            27px 30px 18px !important;
    }

    .ct-auth-brand-points {
        margin:
            0 30px 20px !important;
    }

    .ct-auth-brand-footer {
        margin:
            auto 30px 0 !important;
    }
}

/* MOBILE */
@media (max-width:767.98px) {

    .ct-auth-reel {
        height: 185px !important;
        flex-basis: 185px !important;
    }

    .ct-auth-reel-track {
        animation-duration: 40s !important;
    }
}



/* ==========================================================
   CAST TALENTS — REGISTRATION ENTRY v107
   ========================================================== */

.ct-register-entry-page {
    min-height: 100vh;
    padding: 55px 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(19,150,160,.07),
            transparent 38%),
        #f7f8f8;
}

.ct-register-entry-inner {
    width: 100%;
    max-width: 900px;

    text-align: center;
}

.ct-register-entry-brand {
    margin-bottom: 28px;
}

.ct-register-entry-brand img {
    width: 145px;
    height: auto;
}

.ct-register-entry-copy {
    margin-bottom: 36px;
}

.ct-register-entry-copy > span {
    display: block;

    margin-bottom: 10px;

    color: #1597a1;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.ct-register-entry-copy h1 {
    margin: 0;

    color: #17191a;

    font-size: clamp(38px, 4vw, 57px);
    line-height: .98;
    letter-spacing: -2.4px;
    font-weight: 750;
}

.ct-register-entry-copy p {
    max-width: 500px;

    margin: 18px auto 0;

    color: #74787a;

    font-size: 14px;
    line-height: 1.6;
}

.ct-register-entry-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));

    gap: 20px;

    max-width: 780px;
    margin: 0 auto;
}

.ct-register-entry-card {
    position: relative;

    min-height: 305px;
    padding: 34px;

    display: flex;
    flex-direction: column;

    text-align: left;
    text-decoration: none !important;

    border: 1px solid #e7e9e9;
    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 14px 45px rgba(21,37,39,.055);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.ct-register-entry-card:hover {
    transform: translateY(-5px);

    border-color: rgba(21,151,161,.38);

    box-shadow:
        0 22px 55px rgba(21,37,39,.10);
}

.ct-entry-icon {
    width: 48px;
    height: 48px;

    margin-bottom: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(21,151,161,.09);

    color: #1597a1;

    font-size: 17px;
}

.ct-entry-card-copy small {
    display: block;

    margin-bottom: 4px;

    color: #9b9fa0;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.ct-entry-card-copy h2 {
    margin: 0 0 9px;

    color: #181a1b;

    font-size: 30px;
    line-height: 1;
    letter-spacing: -1px;
}

.ct-entry-card-copy p {
    max-width: 285px;

    margin: 0;

    color: #767a7c;

    font-size: 12px;
    line-height: 1.55;
}

.ct-entry-action {
    margin-top: auto;
    padding-top: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid #efefef;

    color: #1597a1;

    font-size: 12px;
    font-weight: 750;
}

.ct-entry-action i {
    transition: transform .2s ease;
}

.ct-register-entry-card:hover .ct-entry-action i {
    transform: translateX(4px);
}

/* subtle differentiation without making it messy */
.ct-entry-client .ct-entry-icon {
    background: #f7f4ec;
    color: #9b7a34;
}

.ct-register-entry-login {
    margin-top: 27px;

    color: #85898a;

    font-size: 12px;
}

.ct-register-entry-login a {
    margin-left: 3px;

    color: #1597a1;

    font-weight: 750;
    text-decoration: none;
}

@media (max-width: 700px) {

    .ct-register-entry-page {
        padding: 38px 18px;
        align-items: flex-start;
    }

    .ct-register-entry-brand {
        margin-bottom: 24px;
    }

    .ct-register-entry-brand img {
        width: 125px;
    }

    .ct-register-entry-copy {
        margin-bottom: 27px;
    }

    .ct-register-entry-copy h1 {
        font-size: 39px;
        letter-spacing: -1.8px;
    }

    .ct-register-entry-options {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .ct-register-entry-card {
        min-height: 220px;
        padding: 26px;
    }

    .ct-entry-icon {
        margin-bottom: 20px;
    }
}


/* ==========================================================
   REGISTRATION ENTRY — ONE SCREEN FIT v108
   ========================================================== */

body.ct-auth-page .ct-register-entry-page {
    min-height: 100vh !important;
    height: 100vh !important;

    padding: 22px 24px 18px !important;

    align-items: center !important;

    overflow: hidden !important;
}

body.ct-auth-page .ct-register-entry-inner {
    max-width: 880px !important;
    margin: 0 auto !important;
}

/* LOGO */
body.ct-auth-page .ct-register-entry-brand {
    margin-bottom: 12px !important;
}

body.ct-auth-page .ct-register-entry-brand img {
    width: 112px !important;
    max-height: 82px !important;
    object-fit: contain !important;
}

/* HEADING */
body.ct-auth-page .ct-register-entry-copy {
    margin-bottom: 22px !important;
}

body.ct-auth-page .ct-register-entry-copy > span {
    margin-bottom: 7px !important;

    font-size: 9px !important;
    letter-spacing: 2px !important;
}

body.ct-auth-page .ct-register-entry-copy h1 {
    font-size: clamp(38px, 3.2vw, 50px) !important;
    line-height: .96 !important;
    letter-spacing: -2px !important;
}

body.ct-auth-page .ct-register-entry-copy p {
    max-width: 520px !important;

    margin-top: 11px !important;

    font-size: 12px !important;
    line-height: 1.45 !important;
}

/* CARDS */
body.ct-auth-page .ct-register-entry-options {
    max-width: 760px !important;

    gap: 18px !important;
}

body.ct-auth-page .ct-register-entry-card {
    min-height: 250px !important;

    padding: 25px 28px !important;

    border-radius: 20px !important;
}

/* ICON */
body.ct-auth-page .ct-entry-icon {
    width: 42px !important;
    height: 42px !important;

    margin-bottom: 20px !important;

    border-radius: 12px !important;

    font-size: 15px !important;
}

/* CARD COPY */
body.ct-auth-page .ct-entry-card-copy small {
    margin-bottom: 3px !important;
}

body.ct-auth-page .ct-entry-card-copy h2 {
    margin-bottom: 7px !important;

    font-size: 27px !important;
}

body.ct-auth-page .ct-entry-card-copy p {
    font-size: 11px !important;
    line-height: 1.45 !important;
}

/* CARD BUTTON AREA */
body.ct-auth-page .ct-entry-action {
    padding-top: 17px !important;

    font-size: 11px !important;
}

/* SIGN IN */
body.ct-auth-page .ct-register-entry-login {
    margin-top: 16px !important;

    font-size: 11px !important;
}

/* SHORT LAPTOP SCREENS */
@media (min-width: 701px) and (max-height: 760px) {

    body.ct-auth-page .ct-register-entry-page {
        padding-top: 14px !important;
        padding-bottom: 12px !important;
    }

    body.ct-auth-page .ct-register-entry-brand {
        margin-bottom: 7px !important;
    }

    body.ct-auth-page .ct-register-entry-brand img {
        width: 95px !important;
        max-height: 68px !important;
    }

    body.ct-auth-page .ct-register-entry-copy {
        margin-bottom: 16px !important;
    }

    body.ct-auth-page .ct-register-entry-copy h1 {
        font-size: 40px !important;
    }

    body.ct-auth-page .ct-register-entry-copy p {
        margin-top: 8px !important;
    }

    body.ct-auth-page .ct-register-entry-card {
        min-height: 220px !important;
        padding: 21px 25px !important;
    }

    body.ct-auth-page .ct-entry-icon {
        margin-bottom: 15px !important;
    }

    body.ct-auth-page .ct-register-entry-login {
        margin-top: 11px !important;
    }
}

/* MOBILE — allow normal page scroll */
@media (max-width: 700px) {

    body.ct-auth-page .ct-register-entry-page {
        height: auto !important;
        min-height: 100vh !important;

        padding: 25px 17px !important;

        overflow: visible !important;
    }

    body.ct-auth-page .ct-register-entry-brand img {
        width: 100px !important;
    }

    body.ct-auth-page .ct-register-entry-copy h1 {
        font-size: 36px !important;
    }

    body.ct-auth-page .ct-register-entry-options {
        gap: 12px !important;
    }

    body.ct-auth-page .ct-register-entry-card {
        min-height: 205px !important;
        padding: 22px !important;
    }
}


/* ==========================================================
   CT CLIENT REGISTRATION SAFE V1
   ========================================================== */

.ct-client-progress {
    margin: 0 0 22px;
}

.ct-client-progress-meta {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 9px;
    color: #747d82;
    font-size: 11px;
    font-weight: 650;
}

#ctClientStepPercent {
    color: #1597a1;
    font-weight: 800;
}

.ct-client-progress-track {
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: #edf0f1;
}

.ct-client-progress-fill {
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: #1597a1;
    transition: width .25s ease;
}

.ct-client-progress-dots {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
}

.ct-client-progress-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #dce2e4;
}

.ct-client-progress-dots span.is-active {
    background: #1597a1;
}

.ct-client-step {
    display: none;
}

.ct-client-step.is-active {
    display: block;
    animation: ctClientStepIn .2s ease;
}

@keyframes ctClientStepIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ct-client-kicker {
    display: block;
    margin-bottom: 7px;
    color: #1597a1;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
}

.ct-client-info,
.ct-client-secure-note,
.ct-client-review-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0 0 17px;
    padding: 12px 14px;
    border-radius: 11px;
    background: rgba(21,151,161,.055);
    color: #697277;
    font-size: 11px;
    line-height: 1.45;
}

.ct-client-info i,
.ct-client-secure-note > i,
.ct-client-review-note i {
    margin-top: 2px;
    color: #1597a1;
    font-size: 14px;
}

.ct-client-secure-note div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ct-client-secure-note strong {
    color: #364146;
    font-size: 12px;
}

.ct-client-optional {
    margin-left: 5px;
    color: #9aa1a5;
    font-size: 10px;
    font-weight: 500;
}

.ct-client-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 23px;
}

.ct-client-next,
.ct-client-submit {
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    background: #1597a1;
    color: #fff;
    font-size: 12px;
    font-weight: 750;
}

.ct-client-next i,
.ct-client-submit i {
    margin-left: 7px;
}

.ct-client-back {
    min-height: 46px;
    padding: 0 5px;
    border: 0;
    background: transparent;
    color: #747d82;
    font-size: 12px;
    font-weight: 650;
}

.ct-client-back i {
    margin-right: 7px;
}

.ct-client-file-input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.ct-client-upload {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
    min-height: 88px;
    padding: 15px;
    border: 1.5px dashed #cbd4d7;
    border-radius: 13px;
    background: #fafbfb;
    cursor: pointer;
}

.ct-client-upload-icon {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(21,151,161,.1);
    color: #1597a1;
}

.ct-client-upload-copy {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.ct-client-upload-copy strong {
    overflow: hidden;
    color: #313b40;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ct-client-upload-copy small {
    color: #899196;
    font-size: 10px;
}

.ct-client-upload-button {
    padding: 8px 11px;
    border: 1px solid #d8dddf;
    border-radius: 8px;
    background: #fff;
    color: #465055;
    font-size: 10px;
    font-weight: 700;
}

.ct-client-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #687176;
    font-size: 11px;
    line-height: 1.5;
    cursor: pointer;
}

.ct-client-terms input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 1px;
    accent-color: #1597a1;
}

.ct-client-password-state {
    margin-top: 6px;
    color: #a0a6a9;
    font-size: 10px;
}

.ct-client-password-state.is-valid {
    color: #1597a1;
}

.ct-client-review-note {
    margin: 18px 0 0;
}

@media (max-width: 767px) {

    .ct-client-upload {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .ct-client-upload-copy {
        width: calc(100% - 58px);
    }

    .ct-client-upload-button {
        margin-left: 55px;
    }

    .ct-client-next,
    .ct-client-submit {
        flex: 1;
    }
}

/* =========================================================
   CT CLIENT PREMIUM LOCATION SELECTOR V1
   Client registration only
   ========================================================= */

#ctClientRegisterForm .ct-location-field {
    position: relative;
}

#ctClientRegisterForm .ct-location-field .form-control {
    padding-right: 44px;
    cursor: text;
}

#ctClientRegisterForm .ct-location-field::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 20px;
    width: 8px;
    height: 8px;
    border-right: 1.8px solid #53616d;
    border-bottom: 1.8px solid #53616d;
    transform: rotate(45deg);
    pointer-events: none;
    transition: transform .18s ease;
}

#ctClientRegisterForm .ct-location-dropdown {
    position: absolute;
    z-index: 1200;
    left: 12px;
    right: 12px;
    top: calc(100% + 6px);
    background: #fff;
    border: 1px solid #e2e8ec;
    border-radius: 14px;
    box-shadow:
        0 18px 45px rgba(10, 32, 46, .12),
        0 4px 12px rgba(10, 32, 46, .06);
    overflow: hidden;
}

#ctClientRegisterForm .ct-location-dropdown[hidden] {
    display: none !important;
}

#ctClientRegisterForm .ct-location-results {
    max-height: 285px;
    overflow-y: auto;
    padding: 7px;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #cbd5da transparent;
}

#ctClientRegisterForm .ct-location-results::-webkit-scrollbar {
    width: 6px;
}

#ctClientRegisterForm .ct-location-results::-webkit-scrollbar-thumb {
    background: #cbd5da;
    border-radius: 999px;
}

#ctClientRegisterForm .ct-location-option {
    appearance: none;
    width: 100%;
    min-height: 43px;
    border: 0;
    background: transparent;
    border-radius: 9px;
    padding: 9px 11px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    color: #102536;
    font: inherit;
    cursor: pointer;
    transition:
        background .15s ease,
        color .15s ease;
}

#ctClientRegisterForm .ct-location-option:hover,
#ctClientRegisterForm .ct-location-option.is-active {
    background: #f2f9f9;
}

#ctClientRegisterForm .ct-location-option.is-selected {
    background: #edf8f8;
    color: #087f88;
    font-weight: 600;
}

#ctClientRegisterForm .ct-location-flag {
    width: 25px;
    flex: 0 0 25px;
    font-size: 19px;
    line-height: 1;
    text-align: center;
}

#ctClientRegisterForm .ct-location-pin {
    width: 25px;
    flex: 0 0 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f7f7;
    color: #1597a1;
    font-size: 14px;
}

#ctClientRegisterForm .ct-location-option-name {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#ctClientRegisterForm .ct-location-check {
    opacity: 0;
    color: #1597a1;
    font-weight: 700;
    margin-left: auto;
}

#ctClientRegisterForm .ct-location-option.is-selected
.ct-location-check {
    opacity: 1;
}

#ctClientRegisterForm .ct-location-other {
    margin-top: 5px;
    border-top: 1px solid #edf1f3;
    border-radius: 0 0 9px 9px;
}

#ctClientRegisterForm .ct-location-empty {
    padding: 18px 14px;
    text-align: center;
    color: #77838c;
    font-size: 14px;
}

#ctClientRegisterForm .ct-location-disabled {
    background: #f5f7f8 !important;
    cursor: not-allowed !important;
}

@media (max-width: 767.98px) {

    #ctClientRegisterForm .ct-location-dropdown {
        left: 12px;
        right: 12px;
        max-width: none;
    }

    #ctClientRegisterForm .ct-location-results {
        max-height: 240px;
    }

    #ctClientRegisterForm .ct-location-option {
        min-height: 46px;
    }
}


/* =========================================================
   CT CLIENT LOCATION DROPDOWN POLISH V2
   ========================================================= */

#ctClientRegisterForm .ct-location-dropdown {
    top: calc(100% + 5px);
    border: 1px solid #dfe6ea;
    border-radius: 12px;
    box-shadow:
        0 14px 34px rgba(20, 39, 52, .11),
        0 3px 8px rgba(20, 39, 52, .05);
}

#ctClientRegisterForm .ct-location-results {
    max-height: 248px;
    padding: 6px;
}

#ctClientRegisterForm .ct-location-option {
    min-height: 39px;
    padding: 7px 9px;
    gap: 10px;
    border-radius: 8px;
    font-size: 15px;
}

#ctClientRegisterForm .ct-location-option:hover,
#ctClientRegisterForm .ct-location-option.is-active {
    background: #f4f9fa;
}

#ctClientRegisterForm .ct-location-option.is-selected {
    background: #edf8f8;
    color: #087e87;
}

#ctClientRegisterForm .ct-location-icon-wrap {
    width: 27px;
    min-width: 27px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#ctClientRegisterForm .ct-location-flag-img {
    display: block;
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(16, 37, 54, .08);
}

#ctClientRegisterForm .ct-location-globe {
    font-size: 17px;
    line-height: 1;
}

#ctClientRegisterForm .ct-location-city-icon {
    width: 27px;
    min-width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f8f8;
    color: #1597a1;
    font-size: 12px;
}

#ctClientRegisterForm .ct-location-option-name {
    font-weight: 500;
    color: #182f40;
}

#ctClientRegisterForm .ct-location-option.is-selected
.ct-location-option-name {
    color: #087e87;
    font-weight: 600;
}

#ctClientRegisterForm .ct-location-check {
    width: 20px;
    min-width: 20px;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1597a1;
    opacity: 0;
    font-size: 12px;
}

#ctClientRegisterForm .ct-location-option.is-selected
.ct-location-check {
    opacity: 1;
}

#ctClientRegisterForm .ct-location-divider {
    height: 1px;
    background: #edf1f3;
    margin: 5px 7px;
}

#ctClientRegisterForm .ct-location-other {
    margin-top: 0;
    border-top: 0;
}

#ctClientRegisterForm .ct-location-empty {
    min-height: 72px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #7b8790;
    font-size: 13px;
}

#ctClientRegisterForm .ct-location-empty-small {
    min-height: 48px;
}

#ctClientRegisterForm .ct-location-empty-icon {
    font-size: 19px;
    color: #1597a1;
}

@media (max-width: 767.98px) {

    #ctClientRegisterForm .ct-location-results {
        max-height: 230px;
    }

    #ctClientRegisterForm .ct-location-option {
        min-height: 42px;
        font-size: 14px;
    }
}


/* =========================================================
   CT CLIENT STEP 3 LAYOUT FIX V1
   Contact step only
   ========================================================= */

#ctClientRegisterForm
.ct-client-step[data-client-step="3"] {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    left: auto;
    right: auto;
    transform: none;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-step-heading {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.row {
    width: auto;
    margin-left: -8px;
    margin-right: -8px;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.row > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
    min-width: 0;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.form-control {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.iti {
    width: 100% !important;
    max-width: 100%;
    display: block;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.iti input {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-client-actions {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 767.98px) {

    #ctClientRegisterForm
    .ct-client-step[data-client-step="3"]
    .row {
        margin-left: 0;
        margin-right: 0;
    }

    #ctClientRegisterForm
    .ct-client-step[data-client-step="3"]
    .row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }
}


/* =========================================================
   CT CLIENT STEP 3 PHONE REBUILD V2
   Client registration only
   ========================================================= */

#ctClientRegisterForm
.ct-client-step[data-client-step="3"] {
    overflow: visible !important;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-client-phone-field {
    position: relative;
    overflow: visible;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-client-phone-field > .iti {
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-client-phone-field
.iti input {
    width: 100% !important;
    height: 46px;
    min-height: 46px;
    box-sizing: border-box;
    padding-top: 0;
    padding-bottom: 0;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.iti--separate-dial-code
.iti__selected-flag {
    background: #f7f8f9;
    border-right: 1px solid #e4e8eb;
    border-radius: 7px 0 0 7px;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.iti__selected-dial-code {
    color: #172c3c;
    font-size: 15px;
    font-weight: 500;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.iti__arrow {
    margin-left: 6px;
}

/*
 * dropdownContainer is the individual phone column,
 * therefore the dropdown stays inside that field.
 */
#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-client-phone-field
> .iti__country-list {
    position: absolute !important;
    z-index: 99999 !important;
    top: calc(100% - 4px) !important;
    left: 8px !important;
    right: 8px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    max-height: 260px !important;
    margin: 0 !important;
    padding: 5px 0 !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;

    background: #fff !important;
    border: 1px solid #dfe5e9 !important;
    border-radius: 10px !important;

    box-shadow:
        0 16px 35px rgba(18, 38, 52, .13),
        0 3px 8px rgba(18, 38, 52, .06) !important;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-client-phone-field
> .iti__country-list
.iti__country {
    min-height: 38px;
    padding: 8px 12px !important;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-client-phone-field
> .iti__country-list
.iti__country:hover,
#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-client-phone-field
> .iti__country-list
.iti__highlight {
    background: #f1f8f9 !important;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-client-phone-field
> .iti__country-list
.iti__flag-box {
    margin-right: 9px;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-client-phone-field
> .iti__country-list
.iti__country-name {
    overflow: hidden;
    text-overflow: ellipsis;
    color: #172c3c;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-client-phone-field
> .iti__country-list
.iti__dial-code {
    margin-left: auto;
    padding-left: 10px;
    color: #84909a;
}

/* Keep Step 3 visually aligned with Step 2 */

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-client-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 767.98px) {

    #ctClientRegisterForm
    .ct-client-step[data-client-step="3"]
    .ct-client-phone-field {
        margin-bottom: 14px;
    }

    #ctClientRegisterForm
    .ct-client-step[data-client-step="3"]
    .ct-client-phone-field
    > .iti__country-list {
        left: 0 !important;
        right: 0 !important;
        max-height: 230px !important;
    }
}


/* =========================================================
   CT CLIENT PHONE SCROLL FINAL V3
   Overrides the previous V2 dropdown-container experiment.
   ========================================================= */

/*
 * Phone input itself remains clean and full width.
 */
#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-client-phone-field {
    position: relative;
    overflow: visible;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-client-phone-field > .iti {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

#ctClientRegisterForm
.ct-client-step[data-client-step="3"]
.ct-client-phone-field
.iti input {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

/*
 * Desktop intl-tel-input dropdown is appended to BODY by
 * casttalents-forms.js. Give it a controlled premium size
 * while preserving native wheel/trackpad scrolling.
 */
body.ct-auth-page
> .iti
.iti__country-list,
body.ct-auth-page
> .iti__country-list {
    width: 340px !important;
    min-width: 280px !important;
    max-width: calc(100vw - 32px) !important;

    height: auto !important;
    max-height: 300px !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;

    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;

    background: #fff !important;
    border: 1px solid #dfe5e9 !important;
    border-radius: 10px !important;

    box-shadow:
        0 16px 36px rgba(18, 38, 52, .15),
        0 3px 9px rgba(18, 38, 52, .06) !important;

    z-index: 100000 !important;
}

/*
 * intl-tel-input v17 may append the list directly under its
 * container element attached to body.
 */
body.ct-auth-page
.iti__country-list {
    max-height: 300px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

body.ct-auth-page
.iti__country-list
.iti__country {
    min-height: 38px;
    padding: 8px 12px !important;
    cursor: pointer;
}

body.ct-auth-page
.iti__country-list
.iti__country:hover,
body.ct-auth-page
.iti__country-list
.iti__highlight {
    background: #f1f8f9 !important;
}

body.ct-auth-page
.iti__country-list
.iti__dial-code {
    color: #7b8993;
}

/*
 * Explicitly restore native desktop pointer/wheel behavior.
 */
@media (min-width: 992px) {

    body.ct-auth-page
    .iti__country-list {
        pointer-events: auto !important;
        touch-action: auto !important;
        scrollbar-width: auto;
    }
}

/*
 * Mobile does NOT depend on the native list.
 * casttalents-forms.js switches to its existing custom
 * searchable country picker.
 */
@media (max-width: 991.98px) {

    #ctClientRegisterForm
    .ct-client-step[data-client-step="3"]
    .ct-client-phone-field {
        width: 100%;
    }
}


/* =========================================================
   CT CLIENT LOCATION SMART VIEWPORT V3
   Keep Country / City dropdown inside viewport
   ========================================================= */

#ctClientRegisterForm .ct-location-dropdown {
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    max-height: var(--ct-location-max-height, 280px);
    overflow: hidden;
}

#ctClientRegisterForm .ct-location-dropdown.ct-location-open-up {
    top: auto !important;
    bottom: calc(100% + 5px);
}

#ctClientRegisterForm .ct-location-dropdown:not(.ct-location-open-up) {
    top: calc(100% + 5px);
    bottom: auto;
}

#ctClientRegisterForm .ct-location-results {
    max-height: var(--ct-location-results-height, 248px);
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
}

@media (max-width: 767.98px) {
    #ctClientRegisterForm .ct-location-dropdown {
        left: 0;
        right: 0;
    }

    #ctClientRegisterForm .ct-location-results {
        max-height: var(--ct-location-results-height, 220px);
    }
}

/* =========================================================
   CT CLIENT LOCATION FULL SCROLL V4
   Dropdown stays in viewport; ALL results remain accessible
   ========================================================= */

#ctClientRegisterForm .ct-location-dropdown {
    max-height: none !important;
    overflow: visible !important;
}

#ctClientRegisterForm .ct-location-results {
    display: block !important;
    height: auto !important;
    max-height: var(--ct-location-results-height, 248px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

#ctClientRegisterForm .ct-location-dropdown.ct-location-open-up {
    top: auto !important;
    bottom: calc(100% + 5px) !important;
}

#ctClientRegisterForm .ct-location-dropdown:not(.ct-location-open-up) {
    top: calc(100% + 5px) !important;
    bottom: auto !important;
}

@media (max-width: 767.98px) {
    #ctClientRegisterForm .ct-location-results {
        max-height: var(--ct-location-results-height, 220px) !important;
    }
}

/* =========================================================
   TALENT REGISTRATION — FINAL PROFILE FIELDS
========================================================= */

#register-form .ct-talent-location-field {
    position: relative;
}

#register-form .ct-talent-location-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 1060;
    background: #fff;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(0,0,0,.12);
    overflow: hidden;
}

#register-form .ct-talent-location-dropdown[hidden] {
    display: none !important;
}

#register-form .ct-talent-location-results {
    max-height: 260px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 6px;
}

#register-form .ct-talent-location-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    padding: 10px 12px;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

#register-form .ct-talent-location-option:hover,
#register-form .ct-talent-location-option:focus {
    background: rgba(0,0,0,.055);
    outline: none;
}

#register-form .ct-talent-location-icon {
    width: 26px;
    min-width: 26px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

#register-form .ct-talent-location-flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

#register-form .ct-talent-location-other {
    margin-top: 5px;
    border-top: 1px solid rgba(0,0,0,.08);
    border-radius: 0 0 8px 8px;
}

#register-form .ct-talent-location-empty {
    padding: 12px;
    font-size: 14px;
    opacity: .7;
}

#register-form .ct-final-option {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    min-height: 44px;
    padding: 9px 11px;
    margin: 0;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    line-height: 1.25;
}

#register-form .ct-final-option:hover {
    border-color: rgba(0,0,0,.28);
}

#register-form .ct-final-option input {
    flex: 0 0 auto;
    margin: 0;
}

#register-form .ct-final-option span {
    min-width: 0;
}

@media (max-width: 767.98px) {
    #register-form .ct-talent-location-results {
        max-height: 220px;
    }

    #register-form .ct-final-option {
        min-height: 42px;
        padding: 8px 9px;
        font-size: 14px;
    }
}

