.xp-get-access {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(0,180,216,0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(0,180,216,0.10), transparent 28%),
        linear-gradient(180deg, #050a12 0%, #08111d 100%);
}

.xp-get-access__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,180,216,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,180,216,0.03) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 86%);
    pointer-events: none;
}

.xp-get-access__container {
    position: relative;
    z-index: 1;
    padding: 56px 0 72px;
}

.xp-get-access__panel {
    max-width: 1120px;
    margin: 0 auto;
}

.xp-get-access__panel--wide {
    width: 100%;
}

.xp-get-access__card {
    width: 100%;
    padding: 34px;
}

.xp-get-access__head {
    max-width: 860px;
    margin-bottom: 28px;
}

.xp-get-access__title {
    margin-bottom: 12px;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.02;
}

.xp-get-access__text {
    max-width: 72ch;
}

.xp-get-access .xp-login-card__alert {
    margin-bottom: 22px;
}

.xp-get-access-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.xp-get-access-form__section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(0,180,216,0.10);
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    min-width: 0;
}

.xp-get-access-form__section-title {
    margin: 0;
    font-size: 1.02rem;
    color: #effeff;
}

.xp-get-access-form__grid {
    display: grid;
    gap: 16px;
}

.xp-get-access-form__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.xp-get-access-form__full {
    grid-column: 1 / -1;
}

.xp-get-access-form__actions {
    display: flex;
    gap: 14px;
    align-items: center;
    grid-column: 1 / -1;
    justify-content: center;
    padding-top: 6px;
}

.xp-get-access-form__actions .xp-button--primary {
    width: auto;
    min-width: 240px;
}

.xp-get-access-form__errors {
    margin: 10px 0 0;
    padding-left: 18px;
}

.xp-get-access-form__errors li {
    margin: 6px 0;
}

.xp-get-access-form .xp-field label {
    margin-bottom: 2px;
}

.xp-get-access-form .xp-field input {
    min-height: 50px;
}

@media (max-width: 1024px) {
    .xp-get-access__container {
        padding: 42px 0 64px;
    }

    .xp-get-access__card {
        padding: 28px;
    }

    .xp-get-access-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .xp-get-access__container {
        padding: 28px 0 52px;
    }

    .xp-get-access__card {
        padding: 22px;
        border-radius: 20px;
    }

    .xp-get-access__head {
        margin-bottom: 22px;
    }

    .xp-get-access__title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .xp-get-access-form__section {
        padding: 16px;
        border-radius: 18px;
    }

    .xp-get-access-form__grid--2 {
        grid-template-columns: 1fr;
    }

    .xp-get-access-form__actions {
        justify-content: stretch;
    }

    .xp-get-access-form__actions .xp-button--primary {
        width: 100%;
        min-width: 0;
    }
}


.xp-required {
    color: rgba(0, 180, 216, 0.72);
    font-weight: 700;
}


.xp-get-access__success {
    margin-bottom: 22px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 180, 216, 0.22);
    border-radius: 14px;
    background: rgba(0, 180, 216, 0.08);
    color: #b9f7ff;
    font-size: 0.92rem;
}

.xp-get-access-form--step2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.xp-get-access-form__section--full {
    grid-column: 1 / -1;
}

.xp-pricing-selector {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.xp-plan {
    display: block;
}

.xp-plan input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.xp-plan__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 170px;
    padding: 20px;
    padding-top: 30px;
    border: 1px solid rgba(0,180,216,0.14);
    border-radius: 18px;
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.xp-plan__card:hover {
    transform: translateY(-1px);
    border-color: rgba(0,180,216,0.28);
}

.xp-plan input:checked + .xp-plan__card {
    border-color: rgba(0,180,216,0.72);
    background: rgba(0,180,216,0.08);
    box-shadow: 0 0 0 1px rgba(0,180,216,0.24), 0 16px 36px rgba(0,180,216,0.10);
}

.xp-plan--recommended .xp-plan__card {
    border-color: rgba(0,180,216,0.32);
}

.xp-plan__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0,180,216,0.22);
    background: rgba(0,180,216,0.10);
    color: #9befff;
    font-size: 0.76rem;
    line-height: 1;
}

.xp-plan__title {
    font-size: 1.08rem;
    color: #effeff;
}

.xp-plan__price {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: #f7feff;
}

.xp-plan__meta {
    color: #94c7cf;
    line-height: 1.6;
}

.xp-billing-toggle {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.xp-billing-toggle button {
    flex: 1 1 180px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(0,180,216,0.14);
    background: rgba(255,255,255,0.03);
    color: #dffcff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.xp-billing-toggle button:hover {
    transform: translateY(-1px);
    background: rgba(0,180,216,0.10);
    border-color: rgba(0,180,216,0.28);
}

.xp-billing-toggle button.is-active {
    background: linear-gradient(135deg, #00b4d8 0%, #29d3f5 100%);
    color: #03131a;
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(0,180,216,0.22);
}

.xp-pricing-summary {
    display: grid;
    gap: 12px;
}

.xp-pricing-summary p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    color: #a4cfd7;
}

.xp-pricing-summary p strong {
    color: #effeff;
}

.xp-pricing-summary__total {
    margin-top: 6px !important;
    padding-top: 14px;
    border-top: 1px solid rgba(0,180,216,0.10);
}

.xp-pricing-summary__total strong {
    font-size: 1.35rem;
}

@media (max-width: 1024px) {
    .xp-get-access-form--step2 {
        grid-template-columns: 1fr;
    }

    .xp-pricing-selector {
        grid-template-columns: 1fr;
    }
}


.xp-get-access__topbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.xp-get-access__back {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid rgba(0,180,216,0.12);
    background: rgba(255,255,255,0.02);
    color: #8fcfda;
    font-size: 0.9rem;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.xp-get-access__back:hover {
    transform: translateY(-1px);
    background: rgba(0,180,216,0.08);
    border-color: rgba(0,180,216,0.24);
    color: #effeff;
}


.xp-plan__price-suffix {
    display: block;
    margin-top: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #93c9d1;
    line-height: 1.4;
}\n

.xp-checkbox--stacked {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.xp-checkbox--stacked a {
    color: #84ebff;
}

.xp-checkbox--stacked a:hover {
    color: #effeff;
}


.xp-legal-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.xp-legal-card__main {
    display: grid;
    gap: 22px;
}

.xp-legal-card__intro {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.xp-legal-card__icon,
.xp-legal-card__aside-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: rgba(0,180,216,0.10);
    color: #6fe7fb;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.xp-legal-card__icon svg,
.xp-legal-card__aside-icon svg {
    width: 36px;
    height: 36px;
}

.xp-legal-card__copy {
    min-width: 0;
}

.xp-legal-card__copy .xp-get-access-form__section-title {
    margin-bottom: 10px;
    font-size: 1.08rem;
}

.xp-legal-card__text {
    margin: 0;
    color: #b6d6dd;
    line-height: 1.75;
    max-width: 60ch;
}

.xp-legal-card__checks {
    display: grid;
    gap: 16px;
}

.xp-checkbox--legal {
    padding: 16px 18px;
    border: 1px solid rgba(0,180,216,0.10);
    border-radius: 16px;
    background: rgba(255,255,255,0.015);
}

.xp-checkbox--legal input {
    margin-top: 2px;
}

.xp-checkbox--legal span {
    color: #d9f7fb;
    font-size: 1rem;
    line-height: 1.7;
}

.xp-checkbox--legal a {
    font-weight: 600;
}

.xp-legal-card__aside {
    display: grid;
    align-content: center;
    gap: 22px;
    padding-left: 28px;
    border-left: 1px solid rgba(0,180,216,0.10);
}

.xp-legal-card__aside-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.xp-legal-card__aside-icon--small {
    width: 56px;
    height: 56px;
}

.xp-legal-card__aside-icon--small svg {
    width: 28px;
    height: 28px;
}

.xp-legal-card__aside-text {
    margin: 0;
    color: #b8d4da;
    line-height: 1.75;
    font-size: 0.98rem;
}

@media (max-width: 1024px) {
    .xp-legal-card {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .xp-legal-card__aside {
        padding-left: 0;
        padding-top: 22px;
        border-left: 0;
        border-top: 1px solid rgba(0,180,216,0.10);
    }

    .xp-legal-card__aside-item {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 14px;
    }
}

@media (max-width: 767px) {
    .xp-legal-card__intro {
        grid-template-columns: 1fr;
    }

    .xp-legal-card__icon {
        width: 62px;
        height: 62px;
    }

    .xp-legal-card__aside-icon {
        width: 62px;
        height: 62px;
    }

    .xp-checkbox--legal {
        padding: 14px 16px;
    }
}


.xp-renewal-note {
    background: rgba(255,255,255,0.015);
}

.xp-renewal-note__content {
    display: grid;
    gap: 10px;
}

.xp-renewal-note__content p {
    margin: 0;
    color: #a8c9d0;
    line-height: 1.62;
    font-size: 0.89rem;
}

.xp-renewal-note__warning {
    color: #d6edf1 !important;
    font-weight: 600;
}


.xp-get-access-form--step2 > .xp-get-access-form__section:nth-of-type(2) > .xp-get-access-form__section-title,
.xp-get-access-form--step2 > .xp-get-access-form__section:nth-of-type(3) > .xp-get-access-form__section-title {
    margin-bottom: 20px;
}



/* ===== Custom Field Errors ===== */

.xp-input-error {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 1px rgba(255,107,107,0.3);
}

.xp-field-error {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,107,0.08);
    border: 1px solid rgba(255,107,107,0.25);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 0.85rem;
    color: #ffb3b3;
    line-height: 1.4;
}

.xp-field-error__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: #ff6b6b;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
}

.xp-get-access__notice-text {
    margin: 12px 0 0;
    color: #c8f6ff;
    line-height: 1.7;
}

.xp-get-access__notice-action {
    margin: 12px 0 0;
}



/* =========================================================
   XP_GET_ACCESS_BACKEND_LIGHT_V1_20260823
   Backend light visual theme
   ========================================================= */


/* ---------------------------------------------------------
   PAGE
   --------------------------------------------------------- */

html body .xp-get-access {
    min-height: 100vh !important;

    color: #26313b !important;

    background: #f3f5f7 !important;
    background-image: none !important;
}


html body .xp-get-access__bg {
    display: none !important;
}


html body .xp-get-access__container {
    padding: 34px 20px 48px !important;
}


html body .xp-get-access__panel {
    max-width: 1120px !important;
}


/* ---------------------------------------------------------
   MAIN CARD
   --------------------------------------------------------- */

html body .xp-get-access__card {
    padding: 24px !important;

    color: #26313b !important;

    background: #ffffff !important;
    background-image: none !important;

    border: 1px solid #dde3e8 !important;
    border-radius: 6px !important;

    box-shadow:
        0 6px 22px rgba(20, 28, 36, .055) !important;
}


/* ---------------------------------------------------------
   TOP
   --------------------------------------------------------- */

html body .xp-get-access__topbar {
    margin-bottom: 6px !important;
}


html body .xp-get-access__back {
    height: 38px !important;
    min-height: 38px !important;

    padding: 0 15px !important;

    color: #52606c !important;
    -webkit-text-fill-color: #52606c !important;

    background: #ffffff !important;
    background-image: none !important;

    border: 1px solid #ccd3da !important;
    border-radius: 4px !important;

    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 600 !important;

    text-decoration: none !important;

    box-shadow: none !important;
    text-shadow: none !important;

    transform: none !important;
}


html body .xp-get-access__back:hover {
    color: #202932 !important;
    -webkit-text-fill-color: #202932 !important;

    background: #f7f8f9 !important;

    border-color: #aeb8c1 !important;

    transform: none !important;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

html body .xp-get-access__head {
    max-width: none !important;

    margin-bottom: 20px !important;
}


html body .xp-get-access
.xp-login-card__eyebrow {
    margin: 0 0 6px !important;

    color: #71808c !important;
    -webkit-text-fill-color: #71808c !important;

    font-size: 10px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;

    letter-spacing: .09em !important;
    text-transform: uppercase !important;

    text-shadow: none !important;
}


html body .xp-get-access__title {
    margin: 0 !important;

    color: #19212a !important;
    -webkit-text-fill-color: #19212a !important;

    font-size: 32px !important;
    line-height: 1.15 !important;
    font-weight: 650 !important;

    letter-spacing: -.02em !important;

    text-shadow: none !important;
}


html body .xp-get-access__text {
    max-width: 760px !important;

    margin-top: 8px !important;

    color: #66737e !important;
    -webkit-text-fill-color: #66737e !important;

    font-size: 12px !important;
    line-height: 1.5 !important;

    text-shadow: none !important;
}


/* ---------------------------------------------------------
   STEP 2 GRID
   --------------------------------------------------------- */

html body .xp-get-access-form--step2 {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr)
        minmax(0, 1fr) !important;

    gap: 12px !important;
}


/* ---------------------------------------------------------
   SECTIONS
   --------------------------------------------------------- */

html body .xp-get-access-form__section {
    gap: 14px !important;

    padding: 16px !important;

    color: #26313b !important;

    background: #ffffff !important;
    background-image: none !important;

    border: 1px solid #dfe4e9 !important;
    border-radius: 5px !important;

    box-shadow: none !important;
}


html body .xp-get-access-form__section-title {
    margin: 0 !important;

    color: #202932 !important;
    -webkit-text-fill-color: #202932 !important;

    font-size: 12px !important;
    line-height: 1.3 !important;
    font-weight: 650 !important;

    text-shadow: none !important;
}


html body
.xp-get-access-form--step2
> .xp-get-access-form__section:nth-of-type(2)
> .xp-get-access-form__section-title,

html body
.xp-get-access-form--step2
> .xp-get-access-form__section:nth-of-type(3)
> .xp-get-access-form__section-title {
    margin-bottom: 6px !important;
}


/* ---------------------------------------------------------
   PLANS
   --------------------------------------------------------- */

html body .xp-pricing-selector {
    gap: 10px !important;
}


html body .xp-plan__card {
    gap: 6px !important;

    min-height: 132px !important;

    padding: 16px !important;

    color: #26313b !important;

    background: #ffffff !important;
    background-image: none !important;

    border: 1px solid #dfe4e9 !important;
    border-radius: 5px !important;

    cursor: pointer !important;

    box-shadow: none !important;

    transform: none !important;
}


html body .xp-plan__card:hover {
    background: #fafbfc !important;

    border-color: #b9c2ca !important;

    transform: none !important;

    box-shadow: none !important;
}


/* selected */

html body
.xp-plan input:checked
+ .xp-plan__card {
    background: #f4f6f8 !important;

    border-color: #697681 !important;

    box-shadow:
        inset 0 0 0 1px #697681 !important;
}


/* recommended plan must not glow */

html body
.xp-plan--recommended
.xp-plan__card {
    border-color: #d5dce2 !important;
}


html body
.xp-plan--recommended
input:checked
+ .xp-plan__card {
    border-color: #697681 !important;
}


/* ---------------------------------------------------------
   PLAN CONTENT
   --------------------------------------------------------- */

html body .xp-plan__title {
    color: #202932 !important;
    -webkit-text-fill-color: #202932 !important;

    font-size: 12px !important;
    font-weight: 650 !important;
}


html body .xp-plan__price {
    color: #19212a !important;
    -webkit-text-fill-color: #19212a !important;

    font-size: 25px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
}


html body .xp-plan__price-suffix {
    margin-top: 4px !important;

    color: #788590 !important;
    -webkit-text-fill-color: #788590 !important;

    font-size: 9px !important;
}


html body .xp-plan__meta {
    color: #64727d !important;
    -webkit-text-fill-color: #64727d !important;

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


/* Most popular */

html body .xp-plan__badge {
    top: 10px !important;
    right: 10px !important;

    padding: 4px 7px !important;

    color: #52606c !important;
    -webkit-text-fill-color: #52606c !important;

    background: #eef1f3 !important;

    border: 1px solid #d9dfe4 !important;
    border-radius: 3px !important;

    font-size: 8px !important;
    line-height: 1 !important;
    font-weight: 650 !important;

    box-shadow: none !important;
}


/* ---------------------------------------------------------
   BILLING CYCLE
   --------------------------------------------------------- */

html body .xp-billing-toggle {
    display: grid !important;

    grid-template-columns: 1fr !important;

    gap: 7px !important;
}


html body .xp-billing-toggle button {
    width: 100% !important;

    min-height: 38px !important;
    height: 38px !important;

    padding: 0 12px !important;

    color: #52606c !important;
    -webkit-text-fill-color: #52606c !important;

    background: #ffffff !important;
    background-image: none !important;

    border: 1px solid #d5dce2 !important;
    border-radius: 4px !important;

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

    box-shadow: none !important;

    transform: none !important;
}


html body .xp-billing-toggle button:hover {
    color: #202932 !important;

    background: #f7f8f9 !important;

    border-color: #aeb8c1 !important;

    transform: none !important;
}


html body .xp-billing-toggle button.is-active {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;

    background: #202a34 !important;
    background-image: none !important;

    border-color: #202a34 !important;

    box-shadow: none !important;
}


/* ---------------------------------------------------------
   SUMMARY
   --------------------------------------------------------- */

html body .xp-pricing-summary {
    gap: 9px !important;
}


html body .xp-pricing-summary p {
    gap: 12px !important;

    color: #66737e !important;
    -webkit-text-fill-color: #66737e !important;

    font-size: 11px !important;
    line-height: 1.4 !important;
}


html body .xp-pricing-summary p strong {
    color: #202932 !important;
    -webkit-text-fill-color: #202932 !important;

    font-weight: 650 !important;
}


html body .xp-pricing-summary__total {
    margin-top: 4px !important;

    padding-top: 11px !important;

    border-top: 1px solid #e4e8ec !important;
}


html body .xp-pricing-summary__total strong {
    font-size: 16px !important;
}


/* ---------------------------------------------------------
   RENEWAL / CANCELLATION
   --------------------------------------------------------- */

html body .xp-renewal-note {
    background: #fafbfc !important;
}


html body .xp-renewal-note__content {
    gap: 9px !important;
}


html body .xp-renewal-note__content p {
    color: #66737e !important;
    -webkit-text-fill-color: #66737e !important;

    font-size: 10.5px !important;
    line-height: 1.55 !important;
}


html body .xp-renewal-note__warning {
    color: #333d46 !important;
    -webkit-text-fill-color: #333d46 !important;

    font-weight: 650 !important;
}


/* ---------------------------------------------------------
   LEGAL CARD
   --------------------------------------------------------- */

html body .xp-legal-card {
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(250px, .75fr) !important;

    gap: 20px !important;
}


html body .xp-legal-card__main {
    gap: 16px !important;
}


html body .xp-legal-card__intro {
    grid-template-columns: 52px minmax(0, 1fr) !important;

    gap: 14px !important;
}


/* icons */

html body .xp-legal-card__icon,
html body .xp-legal-card__aside-icon {
    width: 44px !important;
    height: 44px !important;

    color: #4f6572 !important;

    background: #eef2f4 !important;
    background-image: none !important;

    border: 1px solid #dce2e6 !important;
    border-radius: 50% !important;

    box-shadow: none !important;
}


html body .xp-legal-card__icon svg,
html body .xp-legal-card__aside-icon svg {
    width: 22px !important;
    height: 22px !important;
}


html body .xp-legal-card__aside-icon--small {
    width: 38px !important;
    height: 38px !important;
}


html body .xp-legal-card__aside-icon--small svg {
    width: 19px !important;
    height: 19px !important;
}


/* legal copy */

html body
.xp-legal-card__copy
.xp-get-access-form__section-title {
    margin-bottom: 6px !important;

    font-size: 12px !important;
}


html body .xp-legal-card__text {
    max-width: 70ch !important;

    color: #66737e !important;
    -webkit-text-fill-color: #66737e !important;

    font-size: 11px !important;
    line-height: 1.55 !important;
}


/* ---------------------------------------------------------
   LEGAL CHECKBOX ROWS
   --------------------------------------------------------- */

html body .xp-legal-card__checks {
    gap: 9px !important;
}


html body .xp-checkbox--legal {
    padding: 11px 12px !important;

    color: #394650 !important;

    background: #fafbfc !important;

    border: 1px solid #e0e5e9 !important;
    border-radius: 4px !important;
}


html body .xp-checkbox--legal input {
    accent-color: #202a34 !important;
}


html body .xp-checkbox--legal span {
    color: #394650 !important;
    -webkit-text-fill-color: #394650 !important;

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


html body .xp-checkbox--legal a,
html body .xp-checkbox--stacked a {
    color: #245d77 !important;
    -webkit-text-fill-color: #245d77 !important;

    font-weight: 650 !important;
}


html body .xp-checkbox--legal a:hover,
html body .xp-checkbox--stacked a:hover {
    color: #173e51 !important;
}


/* ---------------------------------------------------------
   LEGAL RIGHT COLUMN
   --------------------------------------------------------- */

html body .xp-legal-card__aside {
    gap: 16px !important;

    padding-left: 20px !important;

    border-left: 1px solid #e2e6ea !important;
}


html body .xp-legal-card__aside-item {
    grid-template-columns: 44px minmax(0, 1fr) !important;

    gap: 11px !important;
}


html body .xp-legal-card__aside-text {
    color: #66737e !important;
    -webkit-text-fill-color: #66737e !important;

    font-size: 10.5px !important;
    line-height: 1.55 !important;
}


/* ---------------------------------------------------------
   PRIMARY ACTION
   --------------------------------------------------------- */

html body
.xp-get-access-form__actions
.xp-button--primary {
    width: auto !important;

    min-width: 240px !important;

    height: 38px !important;
    min-height: 38px !important;

    padding: 0 15px !important;

    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;

    background: #202a34 !important;
    background-image: none !important;

    border: 1px solid #202a34 !important;
    border-radius: 4px !important;

    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 600 !important;

    box-shadow: none !important;
    text-shadow: none !important;

    transform: none !important;
}


html body
.xp-get-access-form__actions
.xp-button--primary:hover {
    background: #11161c !important;

    border-color: #11161c !important;

    transform: none !important;

    box-shadow: none !important;
}


/* ---------------------------------------------------------
   REQUIRED / ALERTS
   --------------------------------------------------------- */

html body .xp-required {
    color: #8a5f26 !important;
}


html body .xp-get-access__success {
    color: #315f45 !important;

    background: #f1f8f3 !important;

    border: 1px solid #cfe1d5 !important;
    border-radius: 4px !important;
}


html body .xp-get-access__notice-text {
    color: #52606c !important;
}


/* ---------------------------------------------------------
   KILL OLD GLOWS
   --------------------------------------------------------- */

html body .xp-get-access *,
html body .xp-get-access *::before,
html body .xp-get-access *::after {
    text-shadow: none !important;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 1024px) {

    html body .xp-get-access-form--step2 {
        grid-template-columns: 1fr !important;
    }

    html body .xp-pricing-selector {
        grid-template-columns: 1fr !important;
    }

    html body .xp-legal-card {
        grid-template-columns: 1fr !important;
    }

    html body .xp-legal-card__aside {
        padding-left: 0 !important;
        padding-top: 16px !important;

        border-left: 0 !important;
        border-top: 1px solid #e2e6ea !important;
    }
}


@media (max-width: 767px) {

    html body .xp-get-access__container {
        padding: 18px 12px 32px !important;
    }

    html body .xp-get-access__card {
        padding: 16px !important;

        border-radius: 5px !important;
    }

    html body .xp-get-access__title {
        font-size: 27px !important;
    }

    html body .xp-get-access-form__section {
        padding: 13px !important;
    }

    html body
    .xp-get-access-form__actions
    .xp-button--primary {
        width: 100% !important;

        min-width: 0 !important;
    }
}


/* =========================================================
   XP_CHECKOUT_CANCEL_BACKEND_LIGHT_V1_20260823
   Checkout cancel - backend light theme
   ========================================================= */


/* ---------------------------------------------------------
   OUTER SHELL
   --------------------------------------------------------- */

html body .xp-cancel-page .xp-cancel-shell {
    width: 100% !important;
    max-width: 1120px !important;

    margin: 0 auto !important;
    padding: 24px !important;

    color: #26313b !important;

    background: #ffffff !important;
    background-image: none !important;

    border: 1px solid #dde3e8 !important;
    border-radius: 6px !important;

    box-shadow:
        0 6px 22px rgba(20, 28, 36, .055) !important;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

html body .xp-cancel-page .xp-cancel-top {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;

    gap: 24px !important;

    margin: 0 0 22px !important;
}


html body .xp-cancel-page .xp-cancel-eyebrow {
    margin: 0 0 6px !important;

    color: #71808c !important;
    -webkit-text-fill-color: #71808c !important;

    font-size: 10px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;

    letter-spacing: .09em !important;
    text-transform: uppercase !important;

    text-shadow: none !important;
}


html body .xp-cancel-page .xp-cancel-title {
    margin: 0 !important;

    color: #19212a !important;
    -webkit-text-fill-color: #19212a !important;

    font-size: 32px !important;
    line-height: 1.15 !important;
    font-weight: 650 !important;

    letter-spacing: -.02em !important;

    text-shadow: none !important;
}


html body .xp-cancel-page .xp-cancel-intro {
    margin: 12px 0 0 !important;

    max-width: 760px !important;

    color: #66737e !important;
    -webkit-text-fill-color: #66737e !important;

    font-size: 12px !important;
    line-height: 1.55 !important;

    text-shadow: none !important;
}


html body .xp-cancel-page .xp-cancel-intro p,
html body .xp-cancel-page .xp-cancel-intro > * {
    color: #66737e !important;
    -webkit-text-fill-color: #66737e !important;
}


/* ---------------------------------------------------------
   TOP BACK BUTTON
   --------------------------------------------------------- */

html body .xp-cancel-page .xp-cancel-back {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 auto !important;

    height: 38px !important;
    min-height: 38px !important;

    padding: 0 15px !important;

    color: #52606c !important;
    -webkit-text-fill-color: #52606c !important;

    background: #ffffff !important;
    background-image: none !important;

    border: 1px solid #ccd3da !important;
    border-radius: 4px !important;

    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 600 !important;

    text-decoration: none !important;

    box-shadow: none !important;
    text-shadow: none !important;

    transform: none !important;
}


html body .xp-cancel-page .xp-cancel-back:hover {
    color: #202932 !important;
    -webkit-text-fill-color: #202932 !important;

    background: #f7f8f9 !important;

    border-color: #aeb8c1 !important;

    transform: none !important;
}


/* ---------------------------------------------------------
   TWO CARDS
   --------------------------------------------------------- */

html body .xp-cancel-page .xp-cancel-grid {
    display: grid !important;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(320px, .85fr) !important;

    gap: 12px !important;

    margin: 0 0 18px !important;
}


html body .xp-cancel-page .xp-cancel-card {
    min-height: 0 !important;

    padding: 18px !important;

    color: #26313b !important;

    background: #ffffff !important;
    background-image: none !important;

    border: 1px solid #dfe4e9 !important;
    border-radius: 5px !important;

    box-shadow: none !important;
}


html body .xp-cancel-page .xp-cancel-card::before,
html body .xp-cancel-page .xp-cancel-card::after {
    display: none !important;
}


html body .xp-cancel-page .xp-cancel-card-title {
    margin: 0 0 14px !important;

    color: #202932 !important;
    -webkit-text-fill-color: #202932 !important;

    font-size: 14px !important;
    line-height: 1.3 !important;
    font-weight: 650 !important;

    text-shadow: none !important;
}


html body .xp-cancel-page .xp-cancel-text {
    margin: 0 !important;

    color: #66737e !important;
    -webkit-text-fill-color: #66737e !important;

    font-size: 11.5px !important;
    line-height: 1.6 !important;

    text-shadow: none !important;
}


/* ---------------------------------------------------------
   CURRENT STATUS LIST
   --------------------------------------------------------- */

html body .xp-cancel-page .xp-cancel-list {
    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}


html body .xp-cancel-page .xp-cancel-list li {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    gap: 20px !important;

    min-height: 40px !important;

    margin: 0 !important;
    padding: 9px 0 !important;

    color: #66737e !important;
    -webkit-text-fill-color: #66737e !important;

    font-size: 11.5px !important;
    line-height: 1.35 !important;

    border: 0 !important;
    border-bottom: 1px solid #edf0f2 !important;

    text-shadow: none !important;
}


html body .xp-cancel-page .xp-cancel-list li:last-child {
    border-bottom: 0 !important;
}


html body .xp-cancel-page .xp-cancel-list li span {
    color: #66737e !important;
    -webkit-text-fill-color: #66737e !important;
}


html body .xp-cancel-page .xp-cancel-list li strong {
    color: #202932 !important;
    -webkit-text-fill-color: #202932 !important;

    font-weight: 650 !important;

    text-align: right !important;
}


/* ---------------------------------------------------------
   BOTTOM ACTIONS
   --------------------------------------------------------- */

html body .xp-cancel-page .xp-cancel-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 8px !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* Common sizing */

html body .xp-cancel-page .xp-cancel-actions .xp-button {
    width: auto !important;

    min-width: 0 !important;

    height: 38px !important;
    min-height: 38px !important;

    padding: 0 15px !important;

    border-radius: 4px !important;

    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 600 !important;

    text-decoration: none !important;

    box-shadow: none !important;
    text-shadow: none !important;

    transform: none !important;
}


/* Resume subscription */

html body
.xp-cancel-page
.xp-cancel-actions
.xp-button--primary {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;

    background: #202a34 !important;
    background-image: none !important;

    border: 1px solid #202a34 !important;
}


html body
.xp-cancel-page
.xp-cancel-actions
.xp-button--primary:hover {
    color: #ffffff !important;

    background: #11161c !important;

    border-color: #11161c !important;

    transform: none !important;

    box-shadow: none !important;
}


/* Bottom Back to home */

html body
.xp-cancel-page
.xp-cancel-actions
.xp-button:not(.xp-button--primary) {
    color: #52606c !important;
    -webkit-text-fill-color: #52606c !important;

    background: #ffffff !important;
    background-image: none !important;

    border: 1px solid #ccd3da !important;
}


html body
.xp-cancel-page
.xp-cancel-actions
.xp-button:not(.xp-button--primary):hover {
    color: #202932 !important;

    background: #f7f8f9 !important;

    border-color: #aeb8c1 !important;
}


/* ---------------------------------------------------------
   REMOVE OLD DARK VISUAL EFFECTS
   --------------------------------------------------------- */

html body .xp-cancel-page *,
html body .xp-cancel-page *::before,
html body .xp-cancel-page *::after {
    text-shadow: none !important;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 850px) {

    html body .xp-cancel-page .xp-cancel-grid {
        grid-template-columns: 1fr !important;
    }
}


@media (max-width: 640px) {

    html body .xp-cancel-page .xp-cancel-shell {
        padding: 16px !important;
    }

    html body .xp-cancel-page .xp-cancel-top {
        flex-direction: column !important;
    }

    html body .xp-cancel-page .xp-cancel-title {
        font-size: 27px !important;
    }

    html body .xp-cancel-page .xp-cancel-actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    html body .xp-cancel-page .xp-cancel-actions .xp-button,
    html body .xp-cancel-page .xp-cancel-back {
        width: 100% !important;
    }
}


/* =========================================================
   XP_TRIAL_FORM_LIGHT_FIELDS_V1_20260823
   Trial registration fields only
   ========================================================= */


/* LABELS */

html body
.xp-get-access-form:not(.xp-get-access-form--step2)
.xp-field
label {
    display: block !important;

    margin: 0 0 6px !important;

    color: #394650 !important;
    -webkit-text-fill-color: #394650 !important;

    font-size: 12px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
}


/* REQUIRED ASTERISK */

html body
.xp-get-access-form:not(.xp-get-access-form--step2)
.xp-required {
    color: #9a6827 !important;
    -webkit-text-fill-color: #9a6827 !important;
}


/* ALL TEXTUAL FIELDS */

html body
.xp-get-access-form:not(.xp-get-access-form--step2)
.xp-field
input[type="text"],

html body
.xp-get-access-form:not(.xp-get-access-form--step2)
.xp-field
input[type="email"],

html body
.xp-get-access-form:not(.xp-get-access-form--step2)
.xp-field
input[type="password"],

html body
.xp-get-access-form:not(.xp-get-access-form--step2)
.xp-field
input[type="tel"] {
    min-height: 46px !important;

    padding: 0 14px !important;

    color: #19212a !important;
    -webkit-text-fill-color: #19212a !important;

    caret-color: #19212a !important;

    background: #ffffff !important;
    background-image: none !important;

    border: 1px solid #ccd3da !important;
    border-radius: 5px !important;

    box-shadow: none !important;

    font-size: 13px !important;
    font-weight: 400 !important;

    opacity: 1 !important;

    transition:
        border-color 120ms ease,
        box-shadow 120ms ease,
        background 120ms ease !important;
}


/* FOCUS */

html body
.xp-get-access-form:not(.xp-get-access-form--step2)
.xp-field
input:focus {
    outline: 0 !important;

    color: #19212a !important;
    -webkit-text-fill-color: #19212a !important;

    background: #ffffff !important;

    border-color: #168bd2 !important;

    box-shadow:
        0 0 0 2px rgba(22, 139, 210, .11)
        !important;
}


/* READONLY EMAIL */

html body
.xp-get-access-form:not(.xp-get-access-form--step2)
.xp-field
input[readonly] {
    color: #46535f !important;
    -webkit-text-fill-color: #46535f !important;

    background: #f3f5f7 !important;

    border-color: #d8dee4 !important;

    cursor: default !important;

    opacity: 1 !important;
}


/* CHROME / EDGE AUTOFILL */

html body
.xp-get-access-form:not(.xp-get-access-form--step2)
.xp-field
input:-webkit-autofill,

html body
.xp-get-access-form:not(.xp-get-access-form--step2)
.xp-field
input:-webkit-autofill:hover,

html body
.xp-get-access-form:not(.xp-get-access-form--step2)
.xp-field
input:-webkit-autofill:focus {
    -webkit-text-fill-color: #19212a !important;

    caret-color: #19212a !important;

    -webkit-box-shadow:
        0 0 0 1000px #ffffff inset !important;

    box-shadow:
        0 0 0 1000px #ffffff inset !important;

    border-color: #ccd3da !important;

    transition:
        background-color 99999s ease-out 0s !important;
}


/* AUTOFILL + READONLY */

html body
.xp-get-access-form:not(.xp-get-access-form--step2)
.xp-field
input[readonly]:-webkit-autofill {
    -webkit-text-fill-color: #46535f !important;

    -webkit-box-shadow:
        0 0 0 1000px #f3f5f7 inset !important;

    box-shadow:
        0 0 0 1000px #f3f5f7 inset !important;
}


/* FIELD SPACING */

html body
.xp-get-access-form:not(.xp-get-access-form--step2)
.xp-field {
    gap: 0 !important;
}
