:root {
    --lp-rose: #8b1e3f;
    --lp-rose-mid: #b24a6f;
    --lp-rose-lt: #f5e6ec;
    --lp-gold: #b89a6a;
    --lp-gold-lt: #f7f0e4;
    --lp-gold-dk: #8a6c3e;
    --lp-cream: #fdf8f3;
    --lp-ink: #2b1f18;
    --lp-muted: #8c7468;
    --lp-border: #e2cec3;
    --lp-white: #ffffff;
}

/* ── Page body ── */
.lp-body {
    min-height: 100vh;
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    background: var(--lp-cream);
    overflow-x: hidden;
}

/* ══════════════════════════════════
   LEFT PANEL
══════════════════════════════════ */
.lp-left {
    background: linear-gradient(160deg, #4a0e20 0%, #8b1e3f 40%, #b24a6f 75%, #d4856a 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 100vh;
    padding: 3rem 2.5rem;
}

/* Radial glows */
.lp-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 25% 30%, rgba(212, 133, 106, .22) 0%, transparent 65%),
        radial-gradient(ellipse 55% 55% at 75% 75%, rgba(184, 154, 106, .18) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Diamond lattice texture */
.lp-lattice {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%),
        repeating-linear-gradient(-45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}

/* Large ornamental diamond ring */
.lp-bg-diamond {
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .12);
    transform: rotate(45deg);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    border-radius: 28px;
    pointer-events: none;
    z-index: 0;
}

.lp-bg-diamond::after {
    content: '';
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 18px;
}

/* Left content wrapper */
.lp-left-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 400px;
    width: 100%;
}

/* Brand block */
.lp-left-brand {
    margin-bottom: 1.6rem;
}

.lp-left-brand-gem {
    font-size: 2.2rem;
    color: #f7d9a8;
    display: block;
    margin-bottom: 4px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .3));
}

.lp-left-brand-name {
    font-family: 'Great Vibes', cursive;
    font-size: 3.4rem;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .25);
}

.lp-left-brand-sub {
    font-size: 0.6rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-top: 6px;
    display: block;
}

/* Quote */
.lp-left-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 1.4rem;
}

.lp-left-quote em {
    color: #f7d9a8;
    font-style: normal;
}

/* Gem separator row */
.lp-gem-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2rem;
}

.lp-gem-row i {
    font-size: 0.55rem;
    color: var(--lp-gold);
    opacity: 0.7;
}

/* Stats */
.lp-stat-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 300;
    color: #f7d9a8;
    line-height: 1;
}

.lp-stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-top: 4px;
}

/* Footer tagline */
.lp-left-footer {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    translate: -50% 0;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    white-space: nowrap;
    z-index: 2;
}

/* ══════════════════════════════════
   RIGHT PANEL
══════════════════════════════════ */
.lp-right {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 3rem 2rem;
    background: var(--lp-cream);
    position: relative;
}

.lp-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

/* Card */
.lp-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 820px;
    animation: lp-fadeUp 0.5s ease both;
}

@keyframes lp-fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ── Logo ── */
.lp-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.lp-logo-gem {
    font-size: 2rem;
    color: var(--lp-rose);
    display: block;
    margin-bottom: 2px;
    filter: drop-shadow(0 2px 8px rgba(139, 30, 63, .2));
    line-height: 1;
}

.lp-brand-name {
    font-family: 'Great Vibes', cursive;
    font-size: 50px;
    background: linear-gradient(135deg, #991b42, #ee487a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    display: block;
    text-shadow: 0 2px 10px rgba(139, 30, 63, .1);
}

.lp-brand-sub {
    font-size: 40px;
    letter-spacing: 0.34em;

    color: var(--lp-gold-dk);
    margin-top: 5px;
    display: block;
    font-family: 'Great Vibes', cursive;
}

/* ── Headings ── */
.lp-form-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--lp-rose);
    margin-bottom: 3px;
}

.lp-form-sub {
    font-size: 18px;
    color: #111111;
    margin-bottom: 1.8rem;
}

/* ── Field label ── */
.lp-label {
    display: block;
    font-size: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lp-rose);
    font-weight: 500;
    margin-bottom: 7px;
}

/* ── Input wrapper ── */
.lp-input-wrap {
    position: relative;
}

.lp-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    translate: 0 -50%;
    color: var(--lp-muted);
    font-size: 16px;
    pointer-events: none;
    transition: color 0.2s;
    z-index: 5;
}

.lp-input-wrap:focus-within .lp-input-icon {
    color: var(--lp-rose);
}

/* ── Input ── */
.lp-input {
    width: 100%;
    padding: 12px 14px 12px 40px !important;
    border: 1.5px solid var(--lp-border) !important;
    border-radius: 12px !important;
    background: #fff !important;
    font-size: 16px !important;
    color: var(--lp-ink) !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color .22s, box-shadow .22s, transform .18s;
    -webkit-appearance: none;
    font-family: inherit;
}

.lp-input::placeholder {
    color: #c5b4ac;
}

.lp-input:focus {
    border-color: var(--lp-rose) !important;
    box-shadow: 0 0 0 4px rgba(139, 30, 63, .08) !important;
    transform: translateY(-1px);
}

/* ── Password eye toggle ── */
.lp-eye-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    translate: 0 -50%;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--lp-muted);
    font-size: 0.82rem;
    padding: 4px;
    transition: color .2s;
    line-height: 1;
    z-index: 5;
}

.lp-eye-btn:hover {
    color: var(--lp-rose);
}

/* ── Forgot link ── */
.lp-forgot-link {
    font-size: 18px;
    color: var(--lp-gold-dk);
    text-decoration: none;
    transition: color .2s;
}

.lp-forgot-link:hover {
    color: var(--lp-rose);
    text-decoration: underline;
}

/* ── Submit button ── */
.lp-submit-btn {
    width: 100%;
    padding: 13px !important;
    border: none !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #8b1e3f 0%, #b24a6f 60%, #d4856a 100%) !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 0.06em;
    cursor: pointer;
    box-shadow: 0 4px 22px rgba(139, 30, 63, .28) !important;
    transition: box-shadow .22s, transform .18s;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.lp-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .2s;
}

.lp-submit-btn:hover {
    box-shadow: 0 6px 28px rgba(139, 30, 63, .36) !important;
    transform: translateY(-1px);
    color: #fff !important;
}

.lp-submit-btn:hover::before {
    opacity: 1;
}

.lp-submit-btn:active {
    transform: translateY(0);
}

/* ── Go to website banner ── */
.lp-goto-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--lp-border) !important;
    border-radius: 12px;
    background: var(--lp-gold-lt);
    text-decoration: none !important;
    transition: border-color .2s, background .2s, transform .18s;
    cursor: pointer;
    color: inherit;
}

.lp-goto-btn:hover {
    border-color: var(--lp-gold-dk) !important;
    background: #f0e4ce;
    transform: translateY(-1px);
    color: inherit;
}

.lp-goto-gem {
    font-size: 0.95rem;
    color: var(--lp-gold-dk);
    flex-shrink: 0;
}

.lp-goto-label {
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8b1e3f;
    font-weight: 500;
    display: block;
}

.lp-goto-url {
    font-size: 0.8rem;
    color: var(--lp-muted);
    display: block;
}

.lp-goto-arrow {
    margin-left: auto;
    color: var(--lp-gold-dk);
    font-size: 0.85rem;
}

/* ── Or divider ── */
.lp-or-line {
    flex: 1;
    height: 1px;
    background: var(--lp-border);
}

.lp-or-text {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-muted);
}

/* ── Register link ── */
.lp-register-row {
    font-size: 16px;
    color: #111111;
}

.lp-register-row a {
    color: var(--lp-rose);
    font-weight: 500;
    text-decoration: none;
}

.lp-register-row a:hover {
    text-decoration: underline;
}

/* ── Trust badges ── */
.lp-trust-row {
    border-top: 1px solid var(--lp-border);
}

.lp-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.lp-trust-icon {
    width: 30px;
    height: 30px;
    background: var(--lp-rose-lt);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-trust-icon i {
    font-size: 0.82rem;
    color: var(--lp-rose);
}

.lp-trust-text {
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8b1e3f;
    text-align: center;
    line-height: 1.35;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 991px) {
    .lp-left {
        min-height: auto;
        padding: 2.5rem 1.5rem;
    }

    .lp-bg-diamond {
        width: 260px;
        height: 260px;
    }

    .lp-left-quote {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .lp-right {
        min-height: auto;
        padding: 2.5rem 1.2rem;
    }
}

@media (max-width: 420px) {
    .lp-brand-name {
        font-size: 2.4rem;
    }

    .lp-left-brand-name {
        font-size: 2.8rem;
    }
}