/**
 * Pixels Auth - Shared forms, WooCommerce and Essence of Lotus login
 * Theme: pixels-app
 */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Roboto:wght@400;500;600;700&display=swap');

/* ==========================================================================
   CSS Variables & Design Tokens
   ========================================================================== */
:root {
    --px-primary: #0d9488;
    --px-primary-hover: #0f766e;
    --px-primary-active: #115e59;
    --px-primary-light: #f0fdfa;
    --px-primary-ring: rgba(13, 148, 136, 0.18);
    --px-accent: #14b8a6;
    --px-accent-glow: rgba(20, 184, 166, 0.35);

    --px-text-main: #0f172a;
    --px-text-muted: #64748b;
    --px-text-light: #94a3b8;

    --px-bg-surface: #ffffff;
    --px-bg-subtle: #f8fafc;
    --px-bg-muted: #f1f5f9;

    --px-border: #e2e8f0;
    --px-border-hover: #cbd5e1;
    --px-border-focus: #0d9488;

    --px-radius-sm: 8px;
    --px-radius-md: 12px;
    --px-radius-lg: 16px;
    --px-radius-xl: 26px;
    --px-radius-full: 9999px;

    --px-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --px-shadow-card: 0 32px 72px -16px rgba(15, 23, 42, 0.35), 0 16px 36px -12px rgba(13, 148, 136, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    --px-shadow-btn: 0 8px 24px -4px rgba(13, 148, 136, 0.38);
    --px-shadow-btn-hover: 0 12px 28px -4px rgba(13, 148, 136, 0.48);

    --px-font-sans: 'Be Vietnam Pro', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --px-transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Full Page Landing Backdrop (Prevents Half-Screen Voids)
   ========================================================================== */
body.page-template-page-blank-landingpage {
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    background: radial-gradient(circle at 15% 15%, rgba(13, 148, 136, 0.14) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(20, 184, 166, 0.10) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.75) 0%, transparent 100%),
        linear-gradient(145deg, #09131f 0%, #0d1e2e 50%, #07151f 100%) !important;
    background-attachment: fixed !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--px-font-sans);
    color: var(--px-text-main);
    overflow-x: hidden;
}

body.page-template-page-blank-landingpage #wrapper,
body.page-template-page-blank-landingpage #main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    padding: 2.5rem 1rem;
    box-sizing: border-box;
}

/* Clear any accidental <p> tags injected by WordPress editor */
.wp-block-paragraph:has(.pixels-auth-wrapper),
p:has(.pixels-auth-wrapper) {
    display: contents !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ==========================================================================
   Wrapper & Card Container
   ========================================================================== */
.pixels-auth-wrapper {
    width: 100%;
    max-width: 1020px;
    margin: auto;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--px-font-sans);
}

.account-container.pixels-auth {
    display: flex;
    flex-direction: row;
    background: var(--px-bg-surface);
    border-radius: var(--px-radius-xl);
    box-shadow: var(--px-shadow-card);
    overflow: hidden;
    min-height: 620px;
    box-sizing: border-box;
    border: 1px solid rgba(226, 232, 240, 0.85);
    position: relative;
    transition: var(--px-transition);
}

/* ==========================================================================
   Story / Brand Sidebar (Left Column)
   ========================================================================== */
.pixels-auth-story {
    position: relative;
    flex: 0 0 44%;
    background: linear-gradient(155deg, #03211f 0%, #083733 45%, #051d1c 100%);
    color: #ffffff;
    padding: 2.75rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-sizing: border-box;
}

/* Ambient glowing orbs */
.pixels-auth-story::before {
    content: "";
    position: absolute;
    top: -25%;
    right: -25%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.36) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    animation: pxAmbientPulse 9s ease-in-out infinite alternate;
}

.pixels-auth-story::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.28) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

@keyframes pxAmbientPulse {
    0% {
        transform: scale(1) translateY(0) rotate(0deg);
    }

    100% {
        transform: scale(1.18) translateY(20px) rotate(10deg);
    }
}

/* Story Top Bar */
.pixels-story-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.pixels-auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff !important;
    text-decoration: none !important;
    letter-spacing: -0.01em;
}

.pixels-auth-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #5eead4;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pixels-story-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--px-radius-full);
    background: rgba(20, 184, 166, 0.18);
    border: 1px solid rgba(94, 234, 212, 0.3);
    color: #5eead4;
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Story Copy */
.pixels-auth-story-copy {
    position: relative;
    z-index: 2;
    margin: 0 0 1.75rem;
}

.pixels-auth-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #5eead4;
    margin-bottom: 0.65rem;
}

.pixels-auth-story-copy h2 {
    font-size: 2.15rem;
    font-weight: 800;
    line-height: 1.22;
    color: #ffffff;
    margin: 0 0 0.85rem;
    letter-spacing: -0.03em;
}

.pixels-auth-story-copy p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

/* Feature Benefits List */
.pixels-story-features {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.pixels-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.pixels-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #5eead4;
    flex-shrink: 0;
    margin-top: 2px;
}

.pixels-feature-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.pixels-feature-item p {
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Story Footer & Trust */
.pixels-auth-story-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.775rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.25rem;
}

.pixels-trust-stars {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.pixels-trust-stars .stars {
    color: #fbbf24;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.pixels-trust-stars .rating-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.775rem;
}

.pixels-auth-story-footer .secure-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #5eead4;
    font-weight: 600;
    font-size: 0.75rem;
}

/* ==========================================================================
   Main Form Column (Right Column)
   ========================================================================== */
.pixels-auth-main {
    flex: 1 1 56%;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    background: var(--px-bg-surface);
    box-sizing: border-box;
    position: relative;
    justify-content: center;
}

/* Top Navigation (Home link) */
.pixels-auth-top-nav {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.25rem;
}

.pixels-nav-home {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--px-text-muted) !important;
    text-decoration: none !important;
    padding: 6px 12px;
    border-radius: var(--px-radius-full);
    background: var(--px-bg-muted);
    border: 1px solid var(--px-border);
    transition: var(--px-transition);
}

.pixels-nav-home:hover {
    color: var(--px-primary) !important;
    border-color: var(--px-primary);
    background: var(--px-primary-light);
    transform: translateX(-2px);
}

.pixels-auth-main .pixels-auth-eyebrow {
    color: var(--px-primary);
}

.pixels-auth-main h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--px-text-main);
    margin: 0 0 0.4rem;
    letter-spacing: -0.025em;
}

.pixels-auth-intro {
    font-size: 0.925rem;
    color: var(--px-text-muted);
    margin: 0 0 1.65rem;
    line-height: 1.5;
}

/* ==========================================================================
   Dual Segmented Tab Switcher
   ========================================================================== */
.pixels-auth-tabs {
    display: flex;
    background: var(--px-bg-muted);
    padding: 5px;
    border-radius: var(--px-radius-md);
    margin-bottom: 2rem;
    gap: 6px;
    border: 1px solid var(--px-border);
}

.pixels-tab-btn,
.pixels-auth-tabs button {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.75rem 1rem;
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--px-text-muted);
    border-radius: 9px;
    cursor: pointer;
    transition: var(--px-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    user-select: none;
    margin: 0;
}

.pixels-tab-btn svg,
.pixels-auth-tabs button svg {
    transition: transform 0.2s;
}

.pixels-tab-btn:hover,
.pixels-auth-tabs button:hover {
    color: var(--px-text-main);
}

.pixels-tab-btn.is-active,
.pixels-auth-tabs button.is-active {
    background: var(--px-bg-surface);
    color: var(--px-primary);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pixels-tab-btn.is-active svg {
    transform: scale(1.1);
    color: var(--px-primary);
}

/* ==========================================================================
   Form Fields & Input Styling
   ========================================================================== */
.pixels-auth-forms {
    position: relative;
    width: 100%;
}

.pixels-auth-pane {
    display: none;
    animation: pxFadeIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pixels-auth-pane.is-active {
    display: block;
}

@keyframes pxFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-row,
.woocommerce-form-row {
    margin: 0 0 1.25rem;
    padding: 0;
    position: relative;
}

.form-row label,
.woocommerce-form-row label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.form-row label .required {
    color: #ef4444;
    font-weight: 700;
    margin-left: 2px;
}

/* Input container with Left Icon */
.pixels-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.pixels-input-wrap .pixels-icon {
    position: absolute;
    left: 15px;
    color: var(--px-text-light);
    pointer-events: none;
    transition: color 0.2s;
    z-index: 2;
}

.pixels-input-wrap input.input-text,
.pixels-auth input.woocommerce-Input,
.pixels-auth input[type="text"],
.pixels-auth input[type="email"],
.pixels-auth input[type="password"] {
    width: 100%;
    height: 50px;
    padding: 0 16px 0 46px !important;
    background: var(--px-bg-surface);
    border: 1.5px solid var(--px-border) !important;
    border-radius: var(--px-radius-md) !important;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--px-text-main);
    outline: none;
    box-sizing: border-box;
    transition: var(--px-transition);
    font-family: inherit;
}

.pixels-auth input:not(.pixels-input-wrap input) {
    padding: 0 16px !important;
}

.pixels-input-wrap.has-toggle input {
    padding-right: 48px !important;
}

.pixels-input-wrap input:hover,
.pixels-auth input[type="text"]:hover,
.pixels-auth input[type="email"]:hover,
.pixels-auth input[type="password"]:hover {
    border-color: var(--px-border-hover) !important;
}

.pixels-input-wrap input:focus,
.pixels-auth input[type="text"]:focus,
.pixels-auth input[type="email"]:focus,
.pixels-auth input[type="password"]:focus {
    border-color: var(--px-primary) !important;
    box-shadow: 0 0 0 4px var(--px-primary-ring), 0 2px 4px rgba(0, 0, 0, 0.04) !important;
}

.pixels-input-wrap:focus-within .pixels-icon {
    color: var(--px-primary);
}

/* Password reveal toggle button */
.pixels-pass-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--px-text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--px-radius-sm);
    transition: var(--px-transition);
    z-index: 3;
}

.pixels-pass-toggle:hover {
    color: var(--px-primary);
    background: var(--px-primary-light);
}

/* Row Between: Remember me & Forgot Password */
.pixels-row-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.pixels-checkbox-label,
.woocommerce-form-login__rememberme {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.875rem !important;
    color: var(--px-text-muted) !important;
    cursor: pointer;
    user-select: none;
    font-weight: 500 !important;
    margin: 0 !important;
}

.pixels-checkbox-label input[type="checkbox"],
.woocommerce-form-login__rememberme input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    accent-color: var(--px-primary);
    cursor: pointer;
    margin: 0 !important;
    border-radius: 4px;
}

.pixels-link-btn,
.woocommerce-LostPassword a {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--px-primary) !important;
    cursor: pointer;
    text-decoration: none !important;
    transition: var(--px-transition);
    display: inline-block;
}

.pixels-link-btn:hover,
.woocommerce-LostPassword a:hover {
    color: var(--px-primary-hover) !important;
    text-decoration: underline !important;
}

.pixels-auth-help {
    display: block;
    font-size: 0.775rem;
    color: var(--px-text-muted);
    margin-top: 0.45rem;
    line-height: 1.4;
    transition: color 0.2s;
}

/* Back button in Lost Password pane */
.pixels-back-btn {
    background: var(--px-bg-muted);
    border: 1px solid var(--px-border);
    padding: 6px 14px;
    border-radius: var(--px-radius-full);
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--px-text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    transition: var(--px-transition);
}

.pixels-back-btn:hover {
    background: var(--px-primary-light);
    color: var(--px-primary);
    border-color: var(--px-primary);
    transform: translateX(-2px);
}

/* ==========================================================================
   Submit Buttons & States
   ========================================================================== */
.pixels-btn,
.pixels-auth .woocommerce-button,
.pixels-auth button[type="submit"] {
    width: 100%;
    height: 50px;
    border-radius: var(--px-radius-md) !important;
    font-size: 0.975rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--px-transition) !important;
    border: none !important;
    text-decoration: none !important;
    box-sizing: border-box;
}

.pixels-btn-primary,
.pixels-auth .woocommerce-button[name="login"],
.pixels-auth .woocommerce-button[name="register"] {
    background: linear-gradient(135deg, var(--px-primary) 0%, var(--px-primary-hover) 100%) !important;
    color: #ffffff !important;
    box-shadow: var(--px-shadow-btn);
}

.pixels-btn-primary:hover,
.pixels-auth .woocommerce-button[name="login"]:hover,
.pixels-auth .woocommerce-button[name="register"]:hover {
    box-shadow: var(--px-shadow-btn-hover);
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.pixels-btn-primary:active {
    transform: translateY(0);
}

.pixels-btn-secondary {
    background: var(--px-bg-muted) !important;
    color: var(--px-text-main) !important;
    border: 1px solid var(--px-border) !important;
}

.pixels-btn-secondary:hover {
    background: #e2e8f0 !important;
}

.pixels-btn-danger {
    background: #fee2e2 !important;
    color: #b91c1c !important;
}

.pixels-btn-danger:hover {
    background: #fecaca !important;
}

/* Loading Spinner */
.pixels-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: pxSpin 0.7s linear infinite;
}

@keyframes pxSpin {
    to {
        transform: rotate(360deg);
    }
}

.is-loading .pixels-spinner {
    display: inline-block;
}

.is-loading .pixels-btn-text {
    opacity: 0.8;
}

.is-loading {
    pointer-events: none;
    opacity: 0.85;
}

/* Form Footer */
.pixels-form-footer {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--px-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--px-text-muted);
}

/* Feedback Notice Banner */
.pixels-auth-feedback {
    margin-bottom: 1.25rem;
    padding: 0.85rem 1.15rem;
    border-radius: var(--px-radius-md);
    font-size: 0.875rem;
    line-height: 1.45;
    animation: pxFadeIn 0.25s ease;
}

.pixels-auth-feedback.is-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.pixels-auth-feedback.is-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

/* ==========================================================================
   Logged-in User Profile Card
   ========================================================================== */
.pixels-auth-card.pixels-auth-profile {
    background: var(--px-bg-surface);
    border-radius: var(--px-radius-xl);
    box-shadow: var(--px-shadow-card);
    padding: 2.75rem;
    max-width: 580px;
    margin: 2.5rem auto;
    box-sizing: border-box;
}

.pixels-profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pixels-profile-avatar img {
    border-radius: 50%;
    border: 3px solid #ccfbf1;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
    display: block;
}

.pixels-profile-badge {
    display: inline-block;
    padding: 2px 10px;
    background: #ccfbf1;
    color: #0f766e;
    font-size: 0.725rem;
    font-weight: 700;
    border-radius: var(--px-radius-full);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pixels-profile-name {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--px-text-main);
    margin: 0 0 0.25rem;
}

.pixels-profile-email {
    font-size: 0.9rem;
    color: var(--px-text-muted);
    margin: 0;
}

.pixels-profile-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pixels-profile-actions .pixels-btn {
    width: auto;
    padding: 0 1.35rem;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 900px) {
    .account-container.pixels-auth {
        flex-direction: column;
        min-height: auto;
    }

    .pixels-auth-story {
        flex: none;
        padding: 2.25rem 1.75rem;
    }

    .pixels-auth-story-copy h2 {
        font-size: 1.75rem;
    }

    .pixels-auth-main {
        flex: none;
        padding: 2.25rem 1.75rem;
    }
}

@media (max-width: 520px) {
    .pixels-auth-wrapper {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .account-container.pixels-auth {
        border-radius: 20px;
    }

    .pixels-auth-story {
        padding: 1.75rem 1.25rem;
    }

    .pixels-auth-main {
        padding: 1.75rem 1.25rem;
    }

    .pixels-auth-main h2 {
        font-size: 1.5rem;
    }

    .pixels-auth-tabs {
        flex-direction: row;
    }

    .pixels-tab-btn,
    .pixels-auth-tabs button {
        font-size: 0.85rem;
        padding: 0.65rem 0.5rem;
    }

    .pixels-profile-header {
        flex-direction: column;
        text-align: center;
    }

    .pixels-profile-actions {
        flex-direction: column;
    }

    .pixels-profile-actions .pixels-btn {
        width: 100%;
    }
}

/* ==========================================================================
   Essence of Lotus login page
   Keep these scoped overrides after the shared form styles above.
   ========================================================================== */
/* Essence of Lotus authentication design; scoped to the shortcode. */
.pixels-auth-mono { font-family:'SF-Pro-Display',Roboto,sans-serif;color:#303133;background:#ffffff;font-synthesis:none;--brand-primary:#ee3172;--muted:#777777;--line:#eaeaea;--accent:#f8b5cd }
.pixels-auth-mono * { box-sizing:border-box }
.pixels-auth-mono { margin:0 }
.pixels-auth-mono button,
.pixels-auth-mono input { font:inherit }
.pixels-auth-mono button,
.pixels-auth-mono a,
.pixels-auth-mono input { -webkit-tap-highlight-color:transparent }
.pixels-auth-mono button,
.pixels-auth-mono a { touch-action:manipulation }
.pixels-auth-mono button { cursor:pointer }
.pixels-auth-mono button { color:inherit }
.pixels-auth-mono a { color:inherit;text-decoration:none }
.pixels-auth-mono button:focus-visible,
.pixels-auth-mono a:focus-visible,
.pixels-auth-mono input:focus-visible { outline:3px solid #ee3172;outline-offset:4px }
.pixels-auth-mono [hidden] { display:none!important }
.pixels-auth-mono .shell { display:grid;grid-template-columns:48% 52%;min-height:var(--auth-viewport);padding:18px;gap:18px }
.pixels-auth-mono .story { position:relative;overflow:hidden;display:flex;flex-direction:column;border-radius:20px;background:#4b3173;color:#ffffff;padding:34px 45px 25px }
.pixels-auth-mono .story:before { content:'';position:absolute;width:650px;height:650px;border-radius:50%;background:radial-gradient(circle,#ee317233,transparent 65%);top:22%;left:-20%;pointer-events:none }
.pixels-auth-mono .brand { display:flex;align-items:center;font-size:29px;letter-spacing:-1.5px;font-weight:650;width:fit-content }
.pixels-auth-mono .story-content { position:relative;max-width:490px;width:100%;margin:auto; padding-top:49px }
.pixels-auth-mono .eyebrow { display:flex;align-items:center;gap:9px;font-size:12px;letter-spacing:2px;font-weight:500;color:#f5d4e3 }
.pixels-auth-mono .eyebrow>span { width:6px;height:6px;background:var(--accent);border-radius:50% }
.pixels-auth-mono h1 { font-size:clamp(38px,4vw,60px);line-height:1.22;letter-spacing:-2.4px;font-weight:500;margin:22px 0 19px }
.pixels-auth-mono h1 em { font-style:normal;color:var(--accent) }
.pixels-auth-mono .story-description { font-size:13px;line-height:1.9;color:#eee3f5;max-width:355px }
.pixels-auth-mono .art { position:relative;display:grid;place-items:center;margin-top:10px }
.pixels-auth-mono .eol-pagoda-art { grid-template-rows:minmax(0,1fr) auto; gap:8px; margin:10px 0 0; }
.pixels-auth-mono .eol-pagoda-photo { display:block; width:auto; height:100%; min-height:0; min-width:0; max-width:100%; object-fit:contain; border-radius:16px; }
.pixels-auth-mono .eol-pagoda-art figcaption { margin:0; color:#eadcf2; font-size:10px; line-height:1.5; text-align:center; }
.pixels-auth-mono .eol-pagoda-art figcaption a { color:inherit; text-decoration:underline; text-underline-offset:2px; }
.pixels-auth-mono .story-caption { display:flex;align-items:center;gap:12px;font-size:13px;color:#eadcf2;margin:18px 0 35px }
.pixels-auth-mono .caption-line { width:30px;height:1px;background:#ee3172 }
.pixels-auth-mono .story-footer { display:flex;justify-content:space-between;font-size:13px;color:#e2d0eb;gap:12px }
.pixels-auth-mono .auth-panel { display:flex;flex-direction:column;padding:25px 34px 9px }
.pixels-auth-mono .top-note { display:flex;justify-content:flex-end;gap:24px;font-size:11px;letter-spacing:1.35px;color:#777777 ;    align-items: center;}
.pixels-auth-mono .top-note>span { font-size:15px }
.pixels-auth-mono .form-wrap { width:100%;max-width:405px;margin:auto;padding:45px 0 38px }
.pixels-auth-mono .switcher { padding:5px;display:flex;background:#f5f2f6;border-radius:10px;gap:4px;margin-bottom:31px }
.pixels-auth-mono .switcher button { border:0;background:none;flex:1;font-size:14px;font-weight:550;padding:12px;border-radius:7px;color:#777777;transition:background .2s,box-shadow .2s }
.pixels-auth-mono .switcher button.active { background:white;color:#4b3173;box-shadow:0 2px 5px #4b31730b }
.pixels-auth-mono .welcome-icon { display:grid;place-items:center;width:40px;height:40px;border:1px solid #f3d3df;border-radius:12px;background:#fff0f5;color:#c3225a;font-size:27px;margin-bottom:17px }
.pixels-auth-mono .field { margin:0 0 18px }
.pixels-auth-mono .field>label { font-size:13px;font-weight:550;display:block;margin-bottom:9px }
.pixels-auth-mono .input-wrap { display:flex;align-items:center;position:relative }
.pixels-auth-mono .input-wrap input { width:100%;min-width:0;background:#fff;border:1px solid #e3dde8;border-radius:9px;height:49px;padding:0 44px 0 43px;font-size:12px;color:#303133;transition:border .2s,box-shadow .2s }
.pixels-auth-mono .input-wrap input::placeholder { color:#888888 }
.pixels-auth-mono .input-wrap input:focus { outline:none;border-color:#ee3172;box-shadow:0 0 0 3px #ee31721a }
.pixels-auth-mono .field-icon { position:absolute;left:15px;width:17px;height:17px;font-size:18px;line-height:17px;color:#85768e;pointer-events:none }
.pixels-auth-mono .eye { position:absolute;right:4px;width:42px;height:42px;border:0;background:none;display:grid;place-items:center;border-radius:7px;color:#85768e }
.pixels-auth-mono .eye svg { width:18px;height:18px }
.pixels-auth-mono .eye:hover { background:#fff0f5 }
.pixels-auth-mono .eye[aria-pressed=true] { color:#ee3172;background:#fff0f5 }
.pixels-auth-mono .form-options { display:flex;justify-content:space-between;align-items:center;gap:8px;margin:0 0 24px;font-size:10px }
.pixels-auth-mono .text-button { border:0;padding:0;background:none;color:#b82055;font-size:inherit;font-weight:550;line-height:1.7 }
.pixels-auth-mono .text-button:hover { text-decoration:underline;text-underline-offset:3px }
.pixels-auth-mono .submit { display:flex;align-items:center;justify-content:center;position:relative;gap:20px;width:100%;border:1px solid var(--brand-primary);border-radius:9px;background:var(--brand-primary);color:#fff;padding:15px 20px;font-size:12px;font-weight:500;min-height:49px;transition:background .2s,transform .2s,box-shadow .2s }
.pixels-auth-mono .submit>span:last-child:not(:first-child) { position:absolute;right:18px;font-size:20px;color:#f8b5cd }
.pixels-auth-mono .submit:hover { background:#c3225a;box-shadow:0 5px 14px #ee317220;transform:translateY(-1px) }
.pixels-auth-mono .submit:active { transform:translateY(0) }
.pixels-auth-mono .bottom-prompt { text-align:center;margin:25px 0 0;font-size:13px;color:#777777 }
.pixels-auth-mono .bottom-prompt .text-button { margin-left:4px }
.pixels-auth-mono .auth-footer { display:flex;justify-content:space-between;align-items:center;gap:14px;color:#777777;font-size:13px }
.pixels-auth-mono .auth-footer>span { display:flex;align-items:center;gap:6px }
.pixels-auth-mono .status-dot { display:inline-block;width:5px;height:5px;border-radius:50%;background:#1b6330 }
.pixels-auth-mono .footer-link { border:0;background:none;padding:8px 0;font-size:13px;color:#4b3173 }
.pixels-auth-mono input[aria-invalid=true] { border-color:#c15a56 }
.pixels-auth-mono .checkbox-label { display:flex;align-items:flex-start;gap:9px;font-size:13px;line-height:1.9;color:#777777 }
.pixels-auth-mono .checkbox-label input { accent-color:var(--brand-primary);width:15px;height:15px;margin:2px 0 0;flex-shrink:0 }
@media(min-width:1500px) {
.pixels-auth-mono .shell { max-width:1600px;margin:auto }
.pixels-auth-mono .story { padding:44px 65px 32px }
.pixels-auth-mono .story-content { max-width:520px }
.pixels-auth-mono .art { height:350px }
.pixels-auth-mono .form-wrap { max-width:440px }
.pixels-auth-mono .field>label,
.pixels-auth-mono .submit,
.pixels-auth-mono .input-wrap input { font-size:13px }
}
@media(max-width:1050px) {
.pixels-auth-mono .story { padding:28px }
.pixels-auth-mono .auth-panel { padding:25px 20px 9px }
.pixels-auth-mono .story-description { font-size:12px }
.pixels-auth-mono .story-footer { font-size:8px }
.pixels-auth-mono .top-note { font-size:7px;letter-spacing:.7px }
.pixels-auth-mono .story-footer>span:last-child { display:none }
}
@media(max-width:760px) {
.pixels-auth-mono .shell { display:block;padding:0 }
.pixels-auth-mono .story { padding:22px 25px;border-radius:0;background:#4b3173 }
.pixels-auth-mono .brand { font-size:24px }
.pixels-auth-mono .story-content,
.pixels-auth-mono .story-footer { display:none }
.pixels-auth-mono .auth-panel { padding:28px 24px 18px;min-height:calc(100svh - 73px) }
.pixels-auth-mono .top-note { display:none }
.pixels-auth-mono .form-wrap { padding:0 0 36px;margin:0 auto auto;max-width:430px }
.pixels-auth-mono .switcher { margin-bottom:28px }
.pixels-auth-mono .field>label { font-size:12px }
.pixels-auth-mono .input-wrap input { font-size:16px;height:52px }
.pixels-auth-mono .submit { font-size:13px;min-height:52px }
.pixels-auth-mono .bottom-prompt { font-size:11px }
.pixels-auth-mono .form-options { font-size:11px }
.pixels-auth-mono .auth-footer { max-width:430px;width:100%;margin:auto }
.pixels-auth-mono .welcome-icon { margin-bottom:16px }
.pixels-auth-mono .checkbox-label { font-size:11px }
}
.pixels-auth-mono .switcher { position:relative;isolation:isolate }
.pixels-auth-mono .switcher::before { content:'';position:absolute;z-index:-1;top:5px;bottom:5px;left:5px;width:calc((100% - 14px)/2);border-radius:7px;background:#fff;box-shadow:0 2px 5px #4b31730b;transform:translateX(0);transition:transform .42s cubic-bezier(.22,1,.36,1),opacity .2s ease }
.pixels-auth-mono .switcher[data-selected="register"]::before { transform:translateX(calc(100% + 4px)) }
.pixels-auth-mono .switcher[data-selected="reset"]::before { opacity:0 }
.pixels-auth-mono .switcher button,
.pixels-auth-mono .switcher button.active { background:transparent;box-shadow:none;transition:color .2s ease }
@media(prefers-reduced-motion:reduce) {
.pixels-auth-mono .switcher::before,
.pixels-auth-mono .switcher button { transition:none }
}
/* Integration with the existing WordPress form and theme styles. */
.pixels-auth-mono { --auth-viewport:100vh; display:block; width:100%; line-height:1.5; text-align:left; }
@supports (height:100dvh) {
.pixels-auth-mono { --auth-viewport:100dvh; }
}
body.admin-bar .pixels-auth-mono { --auth-viewport:calc(100vh - 32px); }
@supports (height:100dvh) {
body.admin-bar .pixels-auth-mono { --auth-viewport:calc(100dvh - 32px); }
}
.pixels-auth-mono .shell { grid-template-columns:minmax(0,48fr) minmax(0,52fr); width:100%; max-width:1600px; margin:auto; }
.pixels-auth-mono button { margin:0; min-height:0; letter-spacing:normal; text-transform:none; box-shadow:none; }
.pixels-auth-mono .brand { color:#ffffff; letter-spacing:-1px; }
.pixels-auth-mono .story h1 { color:#ffffff; text-transform:none; }
.pixels-auth-mono .auth-panel { min-width:0; }
.pixels-auth-mono .pixels-auth-tabs { border:0; gap:4px; }
.pixels-auth-mono .switcher button { display:block; margin:0; line-height:1.5; }
.pixels-auth-mono .switcher button svg { display:none; }
.pixels-auth-mono .switcher:has(button:only-child)::before { width:calc(100% - 10px); }
.pixels-auth-mono .pixels-auth-pane h2 { font-size:26px; line-height:1.4; font-weight:600; letter-spacing:-1.1px; margin:0 0 10px; color:#303133; text-transform:none; }
.pixels-auth-mono .pixels-auth-intro { color:#777777; font-size:11px; line-height:1.8; margin:0 0 28px; }
.pixels-auth-mono form { margin:0; }
.pixels-auth-mono .input-wrap input.input-text { height:49px; margin:0; padding:0 44px 0 43px!important; border:1px solid #e3dde8!important; border-radius:9px!important; font-size:12px; font-weight:400; box-shadow:none; background:#fff; color:#303133; }
.pixels-auth-mono .input-wrap input.input-text:focus { border-color:#ee3172!important; box-shadow:0 0 0 3px #ee31721a!important; }
.pixels-auth-mono .eye { top:50%; right:4px; padding:0; }
.pixels-auth-mono .mono-password-label { display:flex; justify-content:space-between; align-items:center; gap:8px; margin-bottom:9px; font-size:11px; }
.pixels-auth-mono .mono-password-label label { margin:0; font-weight:550; }
.pixels-auth-mono .checkbox-label { align-items:center; font-weight:400; margin:0; }
.pixels-auth-mono .pixels-auth-help { font-size:10px; color:#777777; line-height:1.7; margin-top:8px; }
.pixels-auth-mono .submit { min-height:49px; line-height:1.5; }
.pixels-auth-mono .submit .mono-submit-arrow { position:absolute; right:18px; font-size:20px; color:#f8b5cd; }
.pixels-auth-mono .submit .pixels-spinner { position:static; font-size:inherit; }
.pixels-auth-mono .submit.is-loading .mono-submit-arrow { display:none; }
.pixels-auth-mono .mono-back { display:inline-flex; align-items:center; gap:8px; margin-bottom:22px; font-size:11px; }
.pixels-auth-mono .pixels-auth-feedback { font-size:12px; }
.pixels-auth-mono .field .required { color:#777777; }
body.page-template-page-blank-landingpage:has(.pixels-auth-mono) { background:#ffffff!important; display:block; }
body.page-template-page-blank-landingpage:has(.pixels-auth-mono) #wrapper,
body.page-template-page-blank-landingpage:has(.pixels-auth-mono) #main { display:flow-root; min-height:0; padding:0; margin:0; }
/* The editor's paragraph around the shortcode becomes empty siblings in the DOM. */
body.page-template-page-blank-landingpage:has(.pixels-auth-mono) #main > p:empty,
body.page-template-page-blank-landingpage:has(.pixels-auth-mono) #main > p.wp-block-paragraph,
body.page-template-page-blank-landingpage:has(.pixels-auth-mono) #main > p:has(> .pixels-auth-mono) { display:contents; margin:0; padding:0; }
@media (min-width:761px) and (max-height:850px) {
.pixels-auth-mono .shell { padding:12px; gap:12px; }
.pixels-auth-mono .story { padding:24px 32px 20px; }
.pixels-auth-mono .story-content { padding-top:16px; }
.pixels-auth-mono .story h1 { font-size:clamp(34px,5.8dvh,48px); margin:14px 0; }
.pixels-auth-mono .story-description { margin-bottom:8px; }
.pixels-auth-mono .art { height:220px; margin-top:0; }
.pixels-auth-mono .story-caption { margin:16px 0; }
.pixels-auth-mono .auth-panel { padding:12px 24px 4px; }
.pixels-auth-mono .form-wrap { padding:16px 0; }
.pixels-auth-mono .switcher { margin-bottom:18px; }
.pixels-auth-mono .welcome-icon { width:34px; height:34px; margin-bottom:10px; }
.pixels-auth-mono .pixels-auth-pane h2 { font-size:24px; margin-bottom:8px; }
.pixels-auth-mono .pixels-auth-intro { margin-bottom:16px; }
.pixels-auth-mono .field { margin-bottom:12px; }
.pixels-auth-mono .bottom-prompt { margin-top:16px; }
.pixels-auth-mono .form-options { margin-bottom:16px; }
}
@media (min-width:761px) and (max-height:650px) {
.pixels-auth-mono .top-note,
.pixels-auth-mono .welcome-icon,
.pixels-auth-mono .story-caption { display:none; }
.pixels-auth-mono .art { height:160px; }
.pixels-auth-mono .form-wrap { padding:8px 0; }
.pixels-auth-mono .switcher { margin-bottom:12px; }
}
@media (max-width:782px) {
body.admin-bar .pixels-auth-mono { --auth-viewport:calc(100vh - 46px); }
@supports (height:100dvh) {
body.admin-bar .pixels-auth-mono { --auth-viewport:calc(100dvh - 46px); }
}
}
@media(max-width:760px) {
.pixels-auth-mono .shell { display:flex; flex-direction:column; gap:0; }
.pixels-auth-mono .story { flex-shrink:0; }
.pixels-auth-mono .auth-panel { flex:1; min-height:0; }
.pixels-auth-mono .form-wrap { padding-bottom:20px; }
.pixels-auth-mono .auth-footer { margin:0 auto; }
.pixels-auth-mono .input-wrap input.input-text { font-size:16px; height:52px; }
.pixels-auth-mono .pixels-auth-intro { font-size:12px; }
.pixels-auth-mono .submit { min-height:52px; }
}
@media(prefers-reduced-motion:reduce) {
.pixels-auth-mono *,
.pixels-auth-mono *::before { animation:none!important; transition:none!important; }
}
/* Brand reference: eolotus.com (Uncode style-custom.css).
   Headings: Playfair Display; body: SF Pro Display / Roboto.
   Lotus pink #ee3172, purple #4b3173, leaf green #1b6330. */
.pixels-auth-mono .brand { max-width:100%; }
.pixels-auth-mono .eol-brand-logo { display:block; width:237px; height:auto; max-width:100%; object-fit:contain; }
.pixels-auth-mono .story h1,
.pixels-auth-mono .pixels-auth-pane h2 { font-family:'Playfair Display',Georgia,serif; font-weight:700; letter-spacing:0; }
.pixels-auth-mono .story h1 { font-size:clamp(34px,3.4vw,52px); line-height:1.2; }
.pixels-auth-mono .pixels-auth-pane h2 { font-size:28px; }
.pixels-auth-mono .pixels-auth-intro { font-size:13px; }
.pixels-auth-mono .switcher button.active { color:#4b3173; }
.pixels-auth-mono .submit { background:#ee3172; border-color:#ee3172; font-weight:600; }
.pixels-auth-mono .submit:hover { background:#c3225a; border-color:#c3225a; }
.pixels-auth-mono .submit .mono-submit-arrow { color:#fff; }
@media(min-width:761px) and (max-height:850px) {
.pixels-auth-mono .eol-brand-logo { width:198px; }
.pixels-auth-mono .story h1 { font-size:clamp(32px,5.4dvh,44px); }
.pixels-auth-mono .pixels-auth-pane h2 { font-size:24px; }
}
@media(max-width:760px) {
.pixels-auth-mono .eol-brand-logo { width:166px; }
.pixels-auth-mono .story { padding-top:16px; padding-bottom:16px; }
}

/* Match the brand typography without changing fonts elsewhere in the theme. */
.pixels-auth-mono :where(p, a, span, button, input, select, textarea, label, small, figcaption) {
 font-family:'SF-Pro-Display',Roboto,sans-serif!important;
}
.pixels-auth-mono .story h1,
.pixels-auth-mono .pixels-auth-pane h2 {
 font-family:'Playfair Display',Georgia,serif!important;
}
