/* /Pages/Login.razor.rz.scp.css */
 /* =========================================
   LOGIN PAGE
   ========================================= */
/* --- 1. FULL PAGE WRAPPER --- */
.login-wrapper[b-7onywhmwdu] {
    min-height: 100vh;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px !important;
    background-color: var(--mud-palette-background);
    background-image: radial-gradient(at 0% 0%, rgba(0, 140, 210, 0.15) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(251, 191, 36, 0.15) 0px, transparent 50%);
}

/* --- 2. MAIN GLASS CARD --- */
.split-card[b-7onywhmwdu] {
    display: flex;
    width: 100%;
    max-width: 1050px;
    min-height: 600px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 140, 210, 0.15);
    overflow: hidden;
}

/* --- 3. LEFT PANEL (Brand Primary with Amber Orbs) --- */
.login-left-panel[b-7onywhmwdu] {
    flex: 1;
    position: relative;
    background: var(--mud-palette-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.floating-orb[b-7onywhmwdu] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: float-b-7onywhmwdu 8s infinite ease-in-out alternate;
}

.orb1[b-7onywhmwdu] {
    width: 350px;
    height: 350px;
    background: rgba(251, 191, 36, 0.5);
    top: -100px;
    left: -100px;
}

.orb2[b-7onywhmwdu] {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.3);
    bottom: -50px;
    right: -50px;
    animation-delay: -4s;
}

@keyframes float-b-7onywhmwdu {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 40px) scale(1.1);
    }
}

/* Content sits strictly above the orbs */
.left-panel-content[b-7onywhmwdu] {
    position: relative;
    z-index: 1;
    padding: 60px;
    width: 100%;
}

/* Left Panel Typography & Features */
[b-7onywhmwdu] .brand-chip {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(8px);
    color: var(--mud-palette-surface) !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
}

[b-7onywhmwdu] .headline-light {
    font-weight: 300 !important;
    line-height: 1.1 !important;
    color: var(--mud-palette-surface) !important;
}

[b-7onywhmwdu] .headline-highlight {
    font-weight: 900 !important;
    line-height: 1.1 !important;
    background: linear-gradient(to right, #FFFFFF, var(--mud-palette-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-list[b-7onywhmwdu] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item[b-7onywhmwdu] {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--mud-palette-surface);
}

/* Frosted glass icon wrappers */
.feature-icon-wrapper[b-7onywhmwdu] {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mud-palette-secondary);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* --- 4. RIGHT PANEL (Clean Form Area) --- */
.login-right-panel[b-7onywhmwdu] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mud-palette-surface);
    position: relative;
    z-index: 1;
}

.right-panel-content[b-7onywhmwdu] {
    width: 100%;
    padding: 40px 0;
}

[b-7onywhmwdu] .welcome-title {
    font-weight: 800 !important;
    color: var(--mud-palette-text-primary) !important;
    letter-spacing: -0.5px;
}

[b-7onywhmwdu] .welcome-subtitle {
    color: var(--mud-palette-text-secondary) !important;
    font-weight: 500 !important;
}

/* --- 5. PREMIUM INPUTS & BUTTONS --- */

[b-7onywhmwdu] .premium-input .mud-input-outlined-border {
    border-radius: 12px;
    border: 1.5px solid #cbd5e1;
    transition: all 0.2s ease;
    background: rgba(243, 244, 246, 0.5);
}

[b-7onywhmwdu] .premium-input:hover .mud-input-outlined-border {
    border-color: var(--mud-palette-text-secondary);
}

[b-7onywhmwdu] .premium-input.mud-input-focused .mud-input-outlined-border {
    border-color: var(--mud-palette-primary) !important;
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(0, 140, 210, 0.1);
    background: var(--mud-palette-surface);
}

/* --- Force Input Text Color --- */
[b-7onywhmwdu] .premium-input input,
[b-7onywhmwdu] .premium-input .mud-input-slot {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important; /* Overrides stubborn browser defaults */
    font-weight: 700 !important; /* Bumped to 700 to make it crisp */
    padding: 14px 14px 14px 0 !important;
}

    /* Also ensure the placeholder text doesn't blend in */
    [b-7onywhmwdu] .premium-input input::placeholder {
        color: #94A3B8 !important;
        -webkit-text-fill-color: #94A3B8 !important;
        font-weight: 500 !important;
    }

/* Primary Button */
[b-7onywhmwdu] .premium-button {
    border-radius: 12px !important;
    height: 52px;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px -6px rgba(0, 140, 210, 0.5) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-top: 16px;
}

    [b-7onywhmwdu] .premium-button:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px -8px rgba(0, 140, 210, 0.6) !important;
    }

    [b-7onywhmwdu] .premium-button:active:not(:disabled) {
        transform: translateY(0);
    }

.button-content-wrapper[b-7onywhmwdu] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Reset Link Styling */
[b-7onywhmwdu] .reset-link-text {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: var(--mud-palette-primary) !important;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
}

    [b-7onywhmwdu] .reset-link-text:hover {
        opacity: 0.7;
    }


/* --- 6. RESPONSIVE DESIGN --- */
@media (max-width: 959.98px) {
    .split-card[b-7onywhmwdu] {
        max-width: 450px;
        min-height: auto;
        background: rgba(255, 255, 255, 0.95);
    }

    .login-right-panel[b-7onywhmwdu] {
        background: transparent;
        padding: 16px 0;
    }
}

/* /Pages/RewardLists.razor.rz.scp.css */
/* =========================================
   REWARD CATALOG ISOLATED STYLES
   ========================================= */

/* Premium Balance Widget */
.balance-widget[b-jdv49pyixa] {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border: 1px solid #6EE7B7;
    border-radius: 16px;
    box-shadow: 0 4px 12px -2px rgba(16, 185, 129, 0.15);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

    .balance-widget:hover[b-jdv49pyixa] {
        transform: translateY(-2px);
    }

.balance-label[b-jdv49pyixa] {
    color: #047857;
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.balance-amount[b-jdv49pyixa] {
    color: #065F46;
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

/* Reward Cards */
.reward-card[b-jdv49pyixa] {
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03), 0 2px 4px -2px rgba(0,0,0,0.03);
    background: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Keeps the top rounded corners intact */
}

    .reward-card:hover[b-jdv49pyixa] {
        transform: translateY(-6px);
        box-shadow: 0 16px 30px -5px rgba(0, 0, 0, 0.08);
        border-color: #CBD5E1;
    }

/* Image Presentation Area */
.image-wrapper[b-jdv49pyixa] {
    background-color: #F8FAFC;
    height: 180px; /* Fixed height for uniformity */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #F1F5F9;
    position: relative;
}

.product-image[b-jdv49pyixa] {
    max-height: 140px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.reward-card:hover .product-image[b-jdv49pyixa] {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Typography & Content */
.reward-title[b-jdv49pyixa] {
    color: #0F172A;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.reward-desc[b-jdv49pyixa] {
    color: #64748B;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 8px;
    /* Line Clamping: Forces text to truncate with '...' after 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Distinct Points Tag for the Catalog */
.catalog-points-tag[b-jdv49pyixa] {
    background-color: #E0F2FE;
    color: #0284C7;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    display: inline-block;
}

/* Button Styling */
.claim-btn[b-jdv49pyixa] {
    border-radius: 10px !important;
    font-weight: 800 !important;
    height: 46px !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
    transition: all 0.2s ease !important;
}

    .claim-btn:hover:not(:disabled)[b-jdv49pyixa] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 140, 210, 0.25) !important;
    }
