    body {
        margin: 0 !important;
        background: #8C3838 !important;
        font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    }

    .bp-auth,
    .bp-auth * {
        box-sizing: border-box;
    }

    .bp-auth {
        position: relative;
        min-height: 100vh;
        overflow: hidden;
        background: #8C3838;
        color: #fff;
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
    }

    /* Dotted world-map backdrop (stipple pattern) */
    .bp-auth__map {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        background-color: #8C3838;
        opacity: 0.55;
        background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1.2px);
        background-size: 10px 10px;
        background-position: 0 0;
        -webkit-mask-image:
            radial-gradient(ellipse 70% 55% at 50% 48%, #000 0%, #000 35%, transparent 72%),
            linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
        mask-image:
            radial-gradient(ellipse 70% 55% at 50% 48%, #000 0%, #000 35%, transparent 72%),
            linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
        -webkit-mask-composite: source-in;
        mask-composite: intersect;
    }

    .bp-auth__inner {
        background: url(../img/auth_bg.png);
        position: relative;
        z-index: 1;
        min-height: 100vh;
        display: grid;
        grid-template-columns: minmax(220px, 1fr) minmax(340px, 400px) minmax(260px, 1fr);
        grid-template-rows: auto 1fr auto;
        grid-template-areas: "logo logo logo" "hero card floats" "foot foot foot";
        align-items: center;
        column-gap: 20px;
        padding: 28px 40px 20px;
        max-width: 1440px;
        margin: 0 auto;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .glo1 {
        position: absolute;
        width: 500px;
        top: 0px;
        mask-image: radial-gradient(circle, black 60%, transparent 100%);
        -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
        right: 0;
    }
    
    .glo2 {
        position: absolute;
        width: 500px;
        bottom: 0px;
        mask-image: radial-gradient(circle, black 60%, transparent 100%);
        -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
        left: 0;
    } 

    /* Logo */
    .bp-logo {
        grid-area: logo;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none !important;
        color: #fff !important;
        width: fit-content;
        margin-bottom: 8px;
    }

    .bp-logo__mark {
        width: 32px;
        height: 32px;
        display: block;
        flex-shrink: 0;
    }

    .bp-logo__text {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -0.02em;
        color: #fff;
        line-height: 1;
    }

    /* Left hero */
    .bp-hero {
        grid-area: hero;
        padding-right: 20px;
        max-width: 420px;
        justify-self: start;
        align-self: center;
    }

    .bp-hero h1 {
        margin: 0 0 20px;
        font-size: clamp(34px, 4vw, 48px);
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -0.02em;
        text-transform: uppercase;
        color: #fff;
    }

    .bp-hero p {
        margin: 0;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.78);
        max-width: 320px;
    }

    /* Center card */
    .bp-card-col {
        grid-area: card;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 400px;
        justify-self: center;
    }

    /*
     * Toggle sits ABOVE the card with a clear gap (Figma 5.png),
     * not overlapping the card top.
     */
    .bp-toggle {
        display: flex;
        align-items: center;
        width: 100%;
        margin: 0 0 16px;
        padding: 15px;
        background: #FDF8F6;
        border-radius: 20px;
        position: relative;
        z-index: 2;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    }

    .bp-toggle button {
        flex: 1;
        border: none;
        background: transparent;
        height: 46px;
        border-radius: 999px;
        font-family: inherit;
        font-size: 14px;
        color: #8C3838;
        cursor: pointer;
        transition: background .18s ease, color .18s ease, box-shadow .18s ease;
        white-space: nowrap;
        padding: 0 16px;
        line-height: 1;
    }

    .bp-toggle button.is-active {
        background: #8C3838;
        color: #fff;
        box-shadow: 0 6px 16px rgba(90, 30, 30, 0.22);
    }

    .bp-toggle button:not(.is-active):hover {
        color: #6B4545;
    }

    .bp-card {
        width: 100%;
        background: #FFFFFF;
        border-radius: 24px;
        padding: 36px 28px 26px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
        color: #191A21;
        position: relative;
        z-index: 1;
    }

    /* Slightly tighter fields on register to match Figma density */
    #bp-register .bp-field {
        margin-bottom: 12px;
    }

    #bp-register .bp-sub {
        margin-bottom: 20px;
    }

    #bp-register .bp-check {
        margin: 2px 0 14px;
    }

    .bp-screen {
        display: none;
    }

    .bp-screen.is-active {
        display: block;
    }

    .bp-card h2 {
        margin: 0 0 8px;
        text-align: center;
        font-size: 28px;
        font-weight: 700;
        letter-spacing: -0.03em;
        color: #191A21;
        line-height: 1.2;
    }

    .bp-card .bp-sub {
        margin: 0 0 28px;
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        color: #75767A;
        line-height: 1.45;
    }

    .bp-card .bp-sub a {
        color: #8C3838 !important;
        font-weight: 600;
        text-decoration: none !important;
        margin-left: 4px;
    }

    .bp-card .bp-sub a:hover {
        text-decoration: underline !important;
    }

    .bp-field {
        margin-bottom: 16px;
    }

    .bp-field label {
        display: block;
        margin: 0 0 8px;
        font-size: 13px;
        font-weight: 500;
        color: #5C5D61;
        font-family: inherit;
        line-height: 1.2;
    }

    .bp-field .form-control,
    .bp-field input.form-control,
    .bp-field select.form-control {
        display: block;
        width: 100%;
        height: 48px;
        padding: 12px 18px;
        border: none !important;
        border-radius: 999px !important;
        background: #F6ECEA !important;
        color: #191A21 !important;
        font-family: inherit !important;
        font-size: 14px !important;
        font-weight: 400;
        outline: none;
        box-shadow: none !important;
        transition: box-shadow .15s ease, background .15s ease;
    }

    .bp-field .form-control::placeholder {
        color: #B5A8A6;
    }

    .bp-field .form-control:focus {
        background: #F3E4E1 !important;
        box-shadow: 0 0 0 2px rgba(140, 56, 56, 0.25) !important;
    }

    .bp-field select.form-control {
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238C3838' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") !important;
        background-repeat: no-repeat !important;
        background-position: right 18px center !important;
        padding-right: 42px;
        cursor: pointer;
    }

    .bp-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .bp-forgot {
        text-align: center;
        margin: 4px 0 20px;
    }

    .bp-forgot a {
        font-size: 14px;
        font-weight: 600;
        color: #8C3838 !important;
        text-decoration: none !important;
    }

    .bp-forgot a:hover {
        text-decoration: underline !important;
    }

    /*
     * Same layout as landing .btn--with-icon:
     * [edge][label][gap][icon][edge]
     * default: equal edges → group centered
     * hover: edges collapse, gap expands → label left, icon right
     */
    .bp-submit {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: 100%;
        height: 50px;
        padding: 0 28px;
        box-sizing: border-box;
        border: 1.5px solid #8C3838;
        border-radius: 999px;
        background: #8C3838;
        color: #FAF7F6 !important;
        font-family: inherit;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition:
            background .25s ease,
            color .25s ease,
            border-color .25s ease,
            transform .15s ease;
    }

    .bp-submit__label {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .bp-submit__edge {
        flex: 1 1 0;
        min-width: 0;
        transition: flex-grow .5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .bp-submit__gap {
        flex: 0 0 10px;
        width: 10px;
        min-width: 0;
        transition:
            flex-grow .5s cubic-bezier(0.22, 1, 0.36, 1),
            flex-basis .5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .bp-submit:hover {
        background: #FAF7F6;
        color: #8C3838 !important;
        border-color: #8C3838;
    }

    .bp-submit:hover .bp-submit__edge {
        flex-grow: 0;
    }

    .bp-submit:hover .bp-submit__gap {
        flex-grow: 1;
        flex-basis: 0;
    }

    .bp-submit:active {
        transform: scale(0.99);
    }

    .bp-submit__icon,
    .bp-submit svg {
        flex: 0 0 18px;
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .bp-submit svg path {
        stroke: currentColor;
        transition: stroke .25s ease;
    }

    .bp-back {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 22px;
        font-size: 13px;
        font-weight: 500;
        color: #75767A !important;
        text-decoration: none !important;
    }

    .bp-back:hover {
        color: #8C3838 !important;
    }

    .bp-back svg {
        width: 14px;
        height: 14px;
    }

    /* Stacked back links on Reset Password screen (Figma 4.png) */
    .bp-back-stack {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 40px;
    }

    .bp-back-stack .bp-back {
        margin-top: 0;
    }

    /* Submit without arrow (Send Reset Link) */
    .bp-submit--plain {
        justify-content: center;
        padding: 0 20px;
    }

    .bp-submit--plain .bp-submit__label {
        flex: 0 0 auto;
    }

    .bp-submit--plain:hover .bp-submit__label {
        transform: none;
    }

    .bp-check {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin: 4px 0 18px;
    }

    .bp-check input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-top: 2px;
        flex-shrink: 0;
        accent-color: #8C3838;
        cursor: pointer;
    }

    .bp-check label {
        margin: 0;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.45;
        color: #75767A;
        cursor: pointer;
    }

    .bp-check a {
        color: #8C3838 !important;
        font-weight: 600;
        text-decoration: none !important;
    }

    .bp-check a:hover {
        text-decoration: underline !important;
    }

    .bp-error {
        display: block;
        color: #C0392B;
        font-size: 12px;
        margin-top: 6px;
    }

    /* Right floating transfer cards (Figma: staggered + dotted path) */
    .bp-floats {
        grid-area: floats;
        position: relative;
        width: 300px;
        height: 340px;
        justify-self: end;
        align-self: center;
        margin-left: 4px;
        pointer-events: none;
    }

    .bp-floats__path {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        overflow: visible;
        z-index: 0;
    }

    .bp-float {
        position: absolute;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 11px 16px;
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
        min-width: 228px;
        white-space: nowrap;
    }

    /* Staggered layout matching Figma (zigzag right of form) */
    .bp-float--1 {
        top: 28px;
        left: 8px;
    }

    .bp-float--2 {
        top: 138px;
        left: 58px;
    }

    .bp-float--3 {
        top: 248px;
        left: 22px;
    }

    .bp-float__amount {
        font-size: 13px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.95);
        letter-spacing: -0.01em;
    }

    .bp-float__status {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 12px;
        font-weight: 500;
        color: #7DDB9A;
    }

    .bp-float__status svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    /* Decorative glow dots on map */
    .bp-dots {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
    }

    .bp-dots span {
        position: absolute;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.55);
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08), 0 0 12px rgba(255, 255, 255, 0.25);
    }

    .bp-dots span:nth-child(1) { top: 32%; left: 16%; }
    .bp-dots span:nth-child(2) { top: 48%; left: 28%; }
    .bp-dots span:nth-child(3) { top: 30%; right: 26%; }
    .bp-dots span:nth-child(4) { top: 62%; right: 16%; }
    .bp-dots span:nth-child(5) { top: 52%; right: 32%; }

    /* Footer */
    .bp-foot {
        grid-area: foot;
        text-align: center;
        padding-top: 24px;
        font-size: 12px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.4;
    }

    @media (max-width: 1100px) {
        .bp-auth__inner {
            grid-template-columns: 1fr minmax(320px, 400px);
            grid-template-areas:
                "logo logo"
                "hero card"
                "foot foot";
            padding: 24px 32px 16px;
        }

        .bp-floats {
            display: none;
        }

        .bp-hero h1 {
            font-size: 40px;
        }
    }

    @media (max-width: 820px) {
        .bp-auth__inner {
            grid-template-columns: 1fr;
            grid-template-areas:
                "logo"
                "card"
                "foot";
            padding: 20px 16px 16px;
            row-gap: 8px;
        }

        .bp-hero {
            display: none;
        }

        .bp-card {
            padding: 28px 22px 24px;
            border-radius: 20px;
        }

        .bp-card h2 {
            font-size: 24px;
        }

        .bp-row {
            grid-template-columns: 1fr;
        }

        .bp-toggle {
            margin-bottom: 12px;
        }

        .bp-toggle button {
            font-size: 13px;
            height: 42px;
            padding: 0 10px;
        }
    }