/* _content/mouse-jiggler-landing/Components/CarrierDropdown.razor.rz.scp.css */
.carrier-wrapper[b-jgl9oe3x1x] {
    position: relative;
    outline: none;
}

/* tracker-input lives inside this component so Home.razor.css scoping won't reach it */
.tracker-input[b-jgl9oe3x1x] {
    background: rgba(11, 18, 32, 0.7);
    border: 1px solid #24324d;
    border-radius: 10px;
    color: #f3f7ff;
    font-size: 0.9375rem;
    padding: 0.65rem 0.875rem;
    width: 100%;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
}

.tracker-input[b-jgl9oe3x1x]::placeholder {
    color: rgba(159, 176, 208, 0.45);
}

.tracker-input:focus[b-jgl9oe3x1x] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
    background: rgba(17, 26, 46, 0.95);
}

.carrier-list[b-jgl9oe3x1x] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #111e36;
    border: 1px solid #2c3f5e;
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.12);
    max-height: 220px;
    overflow-y: auto;
    z-index: 999;
    scrollbar-width: thin;
    scrollbar-color: #2c3f5e transparent;
}

.carrier-list[b-jgl9oe3x1x]::-webkit-scrollbar {
    width: 4px;
}

.carrier-list[b-jgl9oe3x1x]::-webkit-scrollbar-track {
    background: transparent;
}

.carrier-list[b-jgl9oe3x1x]::-webkit-scrollbar-thumb {
    background: #2c3f5e;
    border-radius: 2px;
}

.carrier-item[b-jgl9oe3x1x] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.875rem;
    cursor: pointer;
    transition: background 0.1s ease;
    gap: 0.5rem;
}

.carrier-item:first-child[b-jgl9oe3x1x] {
    border-radius: 10px 10px 0 0;
}

.carrier-item:last-child[b-jgl9oe3x1x] {
    border-radius: 0 0 10px 10px;
}

.carrier-item:hover[b-jgl9oe3x1x] {
    background: rgba(59, 130, 246, 0.14);
}

.carrier-item-name[b-jgl9oe3x1x] {
    font-size: 0.875rem;
    color: #e2eaf8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.carrier-item-iso[b-jgl9oe3x1x] {
    font-size: 0.7rem;
    font-weight: 600;
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 4px;
    padding: 1px 5px;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.carrier-empty[b-jgl9oe3x1x] {
    padding: 0.75rem 0.875rem;
    font-size: 0.875rem;
    color: #9fb0d0;
    text-align: center;
}

.carrier-hint[b-jgl9oe3x1x] {
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
    color: #60a5fa;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
/* _content/mouse-jiggler-landing/Components/CookieConsentBanner.razor.rz.scp.css */
/* Modal Overlay */
.cookie-consent-overlay[b-05h7hw5n78] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
    animation: fadeIn-b-05h7hw5n78 0.3s ease-out;
}

@keyframes fadeIn-b-05h7hw5n78 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Box */
.cookie-consent-modal[b-05h7hw5n78] {
    background: linear-gradient(135deg, #162033 0%, #111a2e 100%);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    animation: slideIn-b-05h7hw5n78 0.4s ease-out;
    border: 1px solid #24324d;
}

@keyframes slideIn-b-05h7hw5n78 {
    from {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Modal Header */
.cookie-consent-header[b-05h7hw5n78] {
    background: linear-gradient(135deg, #0b1220 0%, #111a2e 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 3px solid #3b82f6;
}

.cookie-icon[b-05h7hw5n78] {
    font-size: 2rem;
    color: #3b82f6;
}

.cookie-consent-header h3[b-05h7hw5n78] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Modal Body */
.cookie-consent-body[b-05h7hw5n78] {
    padding: 2rem;
}

.cookie-consent-body p[b-05h7hw5n78] {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #9fb0d0;
}

.cookie-consent-body p:last-child[b-05h7hw5n78] {
    margin-bottom: 0;
}

.cookie-consent-privacy[b-05h7hw5n78] {
    margin-top: 1.5rem !important;
    padding-top: 1.5rem;
    border-top: 1px solid #24324d;
}

.cookie-policy-link[b-05h7hw5n78] {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cookie-policy-link:hover[b-05h7hw5n78] {
    color: #3b82f6;
    gap: 0.75rem;
}

.cookie-policy-link i[b-05h7hw5n78] {
    font-size: 0.9rem;
}

/* Modal Footer */
.cookie-consent-footer[b-05h7hw5n78] {
    padding: 1.5rem 2rem;
    background: #111a2e;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    border-top: 1px solid #24324d;
}

/* Buttons */
.cookie-consent-footer button[b-05h7hw5n78] {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.btn-reject[b-05h7hw5n78] {
    background: #162033;
    color: #9fb0d0;
    border: 2px solid #24324d;
}

.btn-reject:hover[b-05h7hw5n78] {
    background: #111a2e;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-accept[b-05h7hw5n78] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-accept:hover[b-05h7hw5n78] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-accept:active[b-05h7hw5n78],
.btn-reject:active[b-05h7hw5n78] {
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-consent-overlay[b-05h7hw5n78] {
        padding: 1rem;
    }

    .cookie-consent-modal[b-05h7hw5n78] {
        max-width: 100%;
    }

    .cookie-consent-header[b-05h7hw5n78] {
        padding: 1.25rem;
    }

    .cookie-icon[b-05h7hw5n78] {
        font-size: 1.5rem;
    }

    .cookie-consent-header h3[b-05h7hw5n78] {
        font-size: 1.25rem;
    }

    .cookie-consent-body[b-05h7hw5n78] {
        padding: 1.5rem;
    }

    .cookie-consent-body p[b-05h7hw5n78] {
        font-size: 0.9375rem;
    }

    .cookie-consent-footer[b-05h7hw5n78] {
        padding: 1.25rem 1.5rem;
        flex-direction: column-reverse;
    }

    .cookie-consent-footer button[b-05h7hw5n78] {
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent-header[b-05h7hw5n78] {
        padding: 1rem;
    }

    .cookie-consent-header h3[b-05h7hw5n78] {
        font-size: 1.125rem;
    }

    .cookie-consent-body[b-05h7hw5n78] {
        padding: 1.25rem;
    }

    .cookie-consent-body p[b-05h7hw5n78] {
        font-size: 0.875rem;
    }

    .cookie-consent-footer[b-05h7hw5n78] {
        padding: 1rem 1.25rem;
    }
}
/* _content/mouse-jiggler-landing/Components/Layout/MainLayout.razor.rz.scp.css */
/* Main Layout Styles */
.main-layout[b-9higw49nxg] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header[b-9higw49nxg] {
    background: rgba(17, 26, 46, 0.72);
    border: 1px solid rgba(47, 66, 102, 0.65);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    padding: 14px 18px;
    position: relative;
    z-index: 1000;
}

.header-content[b-9higw49nxg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    position: relative;
}

.logo[b-9higw49nxg] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover[b-9higw49nxg] {
    opacity: 0.8;
}

.logo-img[b-9higw49nxg] {
    width: 2rem;
    height: 2rem;
    border-radius: 0.375rem;
}

.logo-text[b-9higw49nxg] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #3b82f6;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle[b-9higw49nxg] {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span[b-9higw49nxg] {
    width: 100%;
    height: 2px;
    background: #9fb0d0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1)[b-9higw49nxg] {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2)[b-9higw49nxg] {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3)[b-9higw49nxg] {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop Navigation */
.desktop-nav[b-9higw49nxg] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Mobile Navigation */
.mobile-nav[b-9higw49nxg] {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(22, 32, 51, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(47, 66, 102, 0.5);
    border-radius: 12px;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    z-index: 1000;
}

.mobile-nav.active[b-9higw49nxg] {
    display: flex;
}

.nav-link[b-9higw49nxg] {
    color: #9fb0d0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
}

.nav-link:hover[b-9higw49nxg] {
    color: #3b82f6;
}

.bullet-link[b-9higw49nxg] {
    color: #9fb0d0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
    padding-left: 1.25rem;
}

.bullet-link[b-9higw49nxg]::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.bullet-link:hover[b-9higw49nxg] {
    color: #3b82f6;
}

.mobile-nav .nav-link[b-9higw49nxg] {
    text-align: center;
    border-bottom: 1px solid #24324d;
    padding: 0.75rem 0;
}

.mobile-nav .nav-link:last-child[b-9higw49nxg] {
    border-bottom: none;
}

.main-content[b-9higw49nxg] {
    flex: 1;
}

.footer[b-9higw49nxg] {
    background: rgba(17, 26, 46, 0.8);
    border-top: 1px solid rgba(47, 66, 102, 0.4);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content[b-9higw49nxg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4[b-9higw49nxg],
.footer-section h5[b-9higw49nxg] {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul[b-9higw49nxg] {
    list-style: none;
    padding: 0;
}

.footer-section ul li[b-9higw49nxg] {
    margin-bottom: 0.5rem;
}

.footer-section a[b-9higw49nxg] {
    color: #9fb0d0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover[b-9higw49nxg] {
    color: #3b82f6;
}

.footer-bottom[b-9higw49nxg] {
    border-top: 1px solid #24324d;
    padding-top: 1rem;
    text-align: center;
    color: #9fb0d0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content[b-9higw49nxg] {
        padding: 0.5rem 0;
    }
    
    .logo[b-9higw49nxg] {
        gap: 0.375rem;
    }
    
    .logo-img[b-9higw49nxg] {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .logo-text[b-9higw49nxg] {
        font-size: 1rem;
    }
    
    .mobile-menu-toggle[b-9higw49nxg] {
        display: flex;
    }
    
    .desktop-nav[b-9higw49nxg] {
        display: none;
    }
    
    .mobile-nav[b-9higw49nxg] {
        display: none;
    }
    
    .mobile-nav.active[b-9higw49nxg] {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header-content[b-9higw49nxg] {
        padding: 0.375rem 0;
    }
    
    .logo-text[b-9higw49nxg] {
        font-size: 0.875rem;
    }
    
    .mobile-nav[b-9higw49nxg] {
        padding: 0.75rem;
    }
    
    .mobile-nav .nav-link[b-9higw49nxg] {
        padding: 0.5rem 0;
        font-size: 0.875rem;
    }
}

/* Logout Button Styles */
.logout-btn[b-9higw49nxg] {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
/* _content/mouse-jiggler-landing/Components/NavigationMenu.razor.rz.scp.css */
/* Navigation Menu Styles */
.header[b-iequbas9hb] {
    background: rgba(17, 26, 46, 0.72);
    border: 1px solid rgba(47, 66, 102, 0.65);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    padding: 14px 18px;
    position: relative;
    z-index: 1000;
}

.header-content[b-iequbas9hb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    position: relative;
}

.logo[b-iequbas9hb] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover[b-iequbas9hb] {
    opacity: 0.8;
}

.logo-img[b-iequbas9hb] {
    width: 2rem;
    height: 2rem;
    border-radius: 0.375rem;
}

.logo-text[b-iequbas9hb] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #3b82f6;
}

.nav-signup-hidden[b-iequbas9hb] {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle[b-iequbas9hb] {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span[b-iequbas9hb] {
    width: 100%;
    height: 2px;
    background: #9fb0d0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1)[b-iequbas9hb] {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2)[b-iequbas9hb] {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3)[b-iequbas9hb] {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop Navigation */
.desktop-nav[b-iequbas9hb] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Mobile Navigation */
.mobile-nav[b-iequbas9hb] {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(22, 32, 51, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(47, 66, 102, 0.5);
    border-radius: 12px;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    z-index: 1000;
}

.mobile-nav.active[b-iequbas9hb] {
    display: flex;
}

.nav-link[b-iequbas9hb] {
    color: #9fb0d0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
}

.nav-link:hover[b-iequbas9hb] {
    color: #3b82f6;
}

.bullet-link[b-iequbas9hb] {
    color: #9fb0d0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
    padding-left: 1.25rem;
}

.bullet-link[b-iequbas9hb]::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.bullet-link:hover[b-iequbas9hb] {
    color: #3b82f6;
}

.mobile-nav .nav-link[b-iequbas9hb] {
    text-align: center;
    border-bottom: 1px solid #24324d;
    padding: 0.75rem 0;
}

.mobile-nav .nav-link:last-child[b-iequbas9hb] {
    border-bottom: none;
}

/* Logout Button Styles */
.logout-btn[b-iequbas9hb] {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Button Styles */
.btn[b-iequbas9hb] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    justify-content: center;
}

.btn-primary[b-iequbas9hb] {
    background: linear-gradient(180deg, #4a90ff 0%, #2563eb 100%);
    color: #FFFFFF;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary:hover[b-iequbas9hb] {
    background: linear-gradient(180deg, #5aa0ff 0%, #2f6ef0 100%);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content[b-iequbas9hb] {
        padding: 0.5rem 0;
    }
    
    .logo[b-iequbas9hb] {
        gap: 0.375rem;
    }
    
    .logo-img[b-iequbas9hb] {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .logo-text[b-iequbas9hb] {
        font-size: 1rem;
    }
    
    .mobile-menu-toggle[b-iequbas9hb] {
        display: flex;
    }
    
    .desktop-nav[b-iequbas9hb] {
        display: none;
    }
    
    .mobile-nav[b-iequbas9hb] {
        display: none;
    }
    
    .mobile-nav.active[b-iequbas9hb] {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header-content[b-iequbas9hb] {
        padding: 0.375rem 0;
    }
    
    .logo-text[b-iequbas9hb] {
        font-size: 0.875rem;
    }
    
    .mobile-nav[b-iequbas9hb] {
        padding: 0.75rem;
    }
    
    .mobile-nav .nav-link[b-iequbas9hb] {
        padding: 0.5rem 0;
        font-size: 0.875rem;
    }
}


/* _content/mouse-jiggler-landing/Components/Pages/ContactUs.razor.rz.scp.css */
/* Authentication Pages Styles */
.auth-container[b-98dl3awtpn] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

.auth-container *[b-98dl3awtpn] {
    box-sizing: border-box;
}

.auth-container[b-98dl3awtpn]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.auth-card[b-98dl3awtpn] {
    background: #162033;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
}

.contact-card[b-98dl3awtpn] {
    max-width: 500px;
}

.auth-header[b-98dl3awtpn] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title[b-98dl3awtpn] {
    font-size: 1.875rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.auth-subtitle[b-98dl3awtpn] {
    color: #9fb0d0;
    font-size: 1rem;
    line-height: 1.5;
}

.form-group[b-98dl3awtpn] {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-label[b-98dl3awtpn] {
    display: block;
    font-weight: 600;
    color: #9fb0d0;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input[b-98dl3awtpn],
input[type="email"][b-98dl3awtpn],
input[type="password"][b-98dl3awtpn],
input[type="text"][b-98dl3awtpn] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

.form-input:focus[b-98dl3awtpn],
input[type="email"]:focus[b-98dl3awtpn],
input[type="password"]:focus[b-98dl3awtpn],
input[type="text"]:focus[b-98dl3awtpn] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-input[b-98dl3awtpn]::placeholder,
input[type="email"][b-98dl3awtpn]::placeholder,
input[type="password"][b-98dl3awtpn]::placeholder,
input[type="text"][b-98dl3awtpn]::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

[b-98dl3awtpn] input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

[b-98dl3awtpn] input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

[b-98dl3awtpn] input::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

.form-textarea[b-98dl3awtpn],
textarea.form-input[b-98dl3awtpn] {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.5;
}

[b-98dl3awtpn] textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
    resize: vertical;
    min-height: 120px;
}

[b-98dl3awtpn] textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

[b-98dl3awtpn] textarea::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

[b-98dl3awtpn] select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
    cursor: pointer;
}

[b-98dl3awtpn] select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

[b-98dl3awtpn] select option {
    padding: 0.5rem;
}

.btn-full[b-98dl3awtpn] {
    width: 100%;
    justify-content: center;
}

.auth-footer[b-98dl3awtpn] {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.auth-footer p[b-98dl3awtpn] {
    color: #9fb0d0;
    font-size: 0.875rem;
}

.auth-link[b-98dl3awtpn] {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover[b-98dl3awtpn] {
    color: #2563eb;
}

.alert[b-98dl3awtpn] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.alert-error[b-98dl3awtpn] {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #B91C1C;
}

.alert-success[b-98dl3awtpn] {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #15803D;
}

.alert i[b-98dl3awtpn] {
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-primary:disabled[b-98dl3awtpn] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary:disabled:hover[b-98dl3awtpn] {
    background-color: #3b82f6;
    transform: none;
}

.fa-spinner[b-98dl3awtpn] {
    animation: spin-b-98dl3awtpn 1s linear infinite;
}

@keyframes spin-b-98dl3awtpn {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.validation-summary[b-98dl3awtpn] {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #B91C1C;
    font-size: 0.875rem;
}

.validation-summary ul[b-98dl3awtpn] {
    margin: 0;
    padding-left: 1.25rem;
}

.validation-message[b-98dl3awtpn] {
    color: #B91C1C;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

@media (max-width: 480px) {
    .auth-card[b-98dl3awtpn] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .auth-title[b-98dl3awtpn] {
        font-size: 1.5rem;
    }
    
    .contact-card[b-98dl3awtpn] {
        padding: 2rem 1.5rem;
    }
}
/* _content/mouse-jiggler-landing/Components/Pages/ForgotPassword.razor.rz.scp.css */
/* Authentication Pages Styles - Reused from Login */
.auth-container[b-w16m4o2tud] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

.auth-container[b-w16m4o2tud]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.auth-card[b-w16m4o2tud] {
    background: #162033;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
}

.auth-header[b-w16m4o2tud] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title[b-w16m4o2tud] {
    font-size: 1.875rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.auth-subtitle[b-w16m4o2tud] {
    color: #9fb0d0;
    font-size: 1rem;
    line-height: 1.5;
}

.form-group[b-w16m4o2tud] {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-label[b-w16m4o2tud] {
    display: block;
    font-weight: 600;
    color: #9fb0d0;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Form Input Styles - Enhanced for Blazor Components */
.form-input[b-w16m4o2tud],
input[type="email"][b-w16m4o2tud],
input[type="password"][b-w16m4o2tud],
input[type="text"][b-w16m4o2tud] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

.form-input:focus[b-w16m4o2tud],
input[type="email"]:focus[b-w16m4o2tud],
input[type="password"]:focus[b-w16m4o2tud],
input[type="text"]:focus[b-w16m4o2tud] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-input[b-w16m4o2tud]::placeholder,
input[type="email"][b-w16m4o2tud]::placeholder,
input[type="password"][b-w16m4o2tud]::placeholder,
input[type="text"][b-w16m4o2tud]::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

/* Specific styling for Blazor InputText components */
[b-w16m4o2tud] input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

[b-w16m4o2tud] input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

[b-w16m4o2tud] input::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

/* Form disabled state */
.form-input:disabled[b-w16m4o2tud],
input[type="email"]:disabled[b-w16m4o2tud],
input[type="password"]:disabled[b-w16m4o2tud],
input[type="text"]:disabled[b-w16m4o2tud] {
    background-color: #0b1220;
    cursor: not-allowed;
    opacity: 0.6;
}

[b-w16m4o2tud] input:disabled {
    background-color: #0b1220;
    cursor: not-allowed;
    opacity: 0.6;
}

.password-input-container[b-w16m4o2tud] {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-input-container .form-input[b-w16m4o2tud] {
    padding-right: 3rem;
    width: 100%;
}

.password-toggle[b-w16m4o2tud] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9fb0d0;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.password-toggle:hover[b-w16m4o2tud] {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.15);
}

.password-toggle i[b-w16m4o2tud] {
    font-size: 1rem;
    pointer-events: none;
}

.btn-full[b-w16m4o2tud] {
    width: 100%;
    justify-content: center;
}

.btn-primary:disabled[b-w16m4o2tud] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary:disabled:hover[b-w16m4o2tud] {
    transform: none;
    box-shadow: none;
}

.auth-footer[b-w16m4o2tud] {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-footer p[b-w16m4o2tud] {
    color: #9fb0d0;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.auth-link[b-w16m4o2tud] {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover[b-w16m4o2tud] {
    color: #2563eb;
}

.alert[b-w16m4o2tud] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    flex-direction: column;
}

.alert-error[b-w16m4o2tud] {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #B91C1C;
}

.alert-success[b-w16m4o2tud] {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #15803D;
}

.alert i[b-w16m4o2tud] {
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.validation-message[b-w16m4o2tud] {
    color: #B91C1C;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.info-text[b-w16m4o2tud] {
    font-size: 0.875rem;
    color: #9fb0d0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Success redirect message */
.redirect-message[b-w16m4o2tud] {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #9fb0d0;
    text-align: center;
}

.fa-spinner[b-w16m4o2tud] {
    animation: spin-b-w16m4o2tud 1s linear infinite;
}

@keyframes spin-b-w16m4o2tud {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 480px) {
    .auth-card[b-w16m4o2tud] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .auth-title[b-w16m4o2tud] {
        font-size: 1.5rem;
    }
}
/* _content/mouse-jiggler-landing/Components/Pages/Home.razor.rz.scp.css */
/* Landing Page Styles */
.landing-page-wrapper[b-6z1l2e7fx7] {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --secondary-color: #60a5fa;
    --text-dark: #f3f7ff;
    --text-light: #9fb0d0;
    --background-light: #111a2e;
    --white: #162033;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Mobile-first optimizations */
*[b-6z1l2e7fx7] {
    box-sizing: border-box;
}

html[b-6z1l2e7fx7] {
    scroll-behavior: smooth;
}

body[b-6z1l2e7fx7] {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global Styles */
.container[b-6z1l2e7fx7] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn[b-6z1l2e7fx7] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary[b-6z1l2e7fx7] {
    background: linear-gradient(180deg, #4a90ff 0%, #2563eb 100%);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary:hover[b-6z1l2e7fx7] {
    background: linear-gradient(180deg, #5aa0ff 0%, #2f6ef0 100%);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

.btn-outline[b-6z1l2e7fx7] {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 10px;
    transition: all 0.15s ease;
}

.btn-outline:hover[b-6z1l2e7fx7] {
    background: rgba(59, 130, 246, 0.12);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.btn-lg[b-6z1l2e7fx7] {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero-section[b-6z1l2e7fx7] {
    background: transparent;
    color: var(--text-dark);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section[b-6z1l2e7fx7]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.25;
    z-index: 0;
}

.hero-content[b-6z1l2e7fx7] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.hero-title[b-6z1l2e7fx7] {
    font-size: clamp(2rem, 5vw + 1rem, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.18);
}

.gradient-text[b-6z1l2e7fx7] {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description[b-6z1l2e7fx7] {
    font-size: 1.25rem;
    color: #9fb0d0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons[b-6z1l2e7fx7] {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats[b-6z1l2e7fx7] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat[b-6z1l2e7fx7] {
    text-align: center;
}

.stat-number[b-6z1l2e7fx7] {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.stat-label[b-6z1l2e7fx7] {
    font-size: 0.875rem;
    color: #9fb0d0;
}

.stat:hover .stat-number[b-6z1l2e7fx7] {
    transform: scale(1.1);
}

/* Hero Visual - Tracker Panel */
.hero-visual[b-6z1l2e7fx7] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tracker-panel[b-6z1l2e7fx7] {
    width: 100%;
    min-height: 280px;
    background: linear-gradient(180deg, rgba(22, 32, 51, 0.98), rgba(17, 26, 46, 0.98));
    border: 1px solid #24324d;
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.10);
    padding: 2rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.tracker-panel[b-6z1l2e7fx7]::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(59, 130, 246, 0.22);
    pointer-events: none;
}

.tracker-panel-header[b-6z1l2e7fx7] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tracker-logo[b-6z1l2e7fx7] {
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    flex-shrink: 0;
}

.tracker-panel-title[b-6z1l2e7fx7] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #f3f7ff;
    letter-spacing: -0.01em;
}

.tracker-form[b-6z1l2e7fx7] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tracker-field[b-6z1l2e7fx7] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.tracker-label[b-6z1l2e7fx7] {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #9fb0d0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tracker-optional[b-6z1l2e7fx7] {
    font-size: 0.7rem;
    font-weight: 500;
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 4px;
    padding: 1px 6px;
    text-transform: none;
    letter-spacing: 0;
}

.tracker-input[b-6z1l2e7fx7] {
    background: rgba(11, 18, 32, 0.7);
    border: 1px solid #24324d;
    border-radius: 10px;
    color: #f3f7ff;
    font-size: 0.9375rem;
    padding: 0.65rem 0.875rem;
    width: 100%;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    outline: none;
}

.tracker-input[b-6z1l2e7fx7]::placeholder {
    color: rgba(159, 176, 208, 0.45);
}

.tracker-input:focus[b-6z1l2e7fx7] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
    background: rgba(17, 26, 46, 0.95);
}

.tracker-btn[b-6z1l2e7fx7] {
    background: linear-gradient(180deg, #4a90ff 0%, #2563eb 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    width: 100%;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35), 0 0 24px rgba(59, 130, 246, 0.20);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    gap: 0.5rem;
}

.tracker-btn:hover[b-6z1l2e7fx7] {
    background: linear-gradient(180deg, #5aa0ff 0%, #2f6ef0 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5), 0 0 36px rgba(59, 130, 246, 0.28);
    transform: translateY(-1px);
}

.tracker-hint[b-6z1l2e7fx7] {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(159, 176, 208, 0.55);
    margin: 0;
}

/* Features Section */
.features-section[b-6z1l2e7fx7] {
    padding: 5rem 0;
    background: transparent;
}

.section-title[b-6z1l2e7fx7] {
    text-align: center;
    font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.12);
}

.features-grid[b-6z1l2e7fx7] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card[b-6z1l2e7fx7] {
    background: linear-gradient(180deg, rgba(28, 42, 67, 0.92) 0%, rgba(22, 32, 51, 0.96) 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #24324d;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover[b-6z1l2e7fx7] {
    transform: translateY(-4px);
    border-color: #2f4266;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.feature-icon[b-6z1l2e7fx7] {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3[b-6z1l2e7fx7] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p[b-6z1l2e7fx7] {
    color: var(--text-light);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section[b-6z1l2e7fx7] {
    padding: 5rem 0;
}

.steps[b-6z1l2e7fx7] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step[b-6z1l2e7fx7] {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number[b-6z1l2e7fx7] {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3[b-6z1l2e7fx7] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p[b-6z1l2e7fx7] {
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section[b-6z1l2e7fx7] {
    padding: 5rem 0;
    background: transparent;
}

.pricing-grid[b-6z1l2e7fx7] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card[b-6z1l2e7fx7] {
    background: linear-gradient(180deg, rgba(28, 42, 67, 0.92) 0%, rgba(22, 32, 51, 0.96) 100%);
    border: 2px solid #24324d;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover[b-6z1l2e7fx7] {
    transform: translateY(-4px);
    border-color: #2f4266;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.pricing-card.featured[b-6z1l2e7fx7] {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.pricing-card.featured:hover[b-6z1l2e7fx7] {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge[b-6z1l2e7fx7] {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header[b-6z1l2e7fx7] {
    text-align: center;
}

.pricing-header h3[b-6z1l2e7fx7] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
    margin-bottom: 1rem;
}

.price[b-6z1l2e7fx7] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.currency[b-6z1l2e7fx7] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
}

.amount[b-6z1l2e7fx7] {
    font-size: 3rem;
    font-weight: 800;
    color: #f3f7ff;
}

.period[b-6z1l2e7fx7] {
    font-size: 1rem;
    color: #9fb0d0;
}

.pricing-header p[b-6z1l2e7fx7] {
    color: #9fb0d0;
    margin-top: 0.5rem;
}

.pricing-features[b-6z1l2e7fx7] {
    margin: 0.75rem 0;
    text-align: left;
    list-style: none;
    padding: 0;
}

.pricing-features li[b-6z1l2e7fx7] {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9fb0d0;
}

.pricing-features i[b-6z1l2e7fx7] {
    color: #10B981;
    font-size: 1rem;
}

.savings[b-6z1l2e7fx7] {
    color: #10B981;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.btn-full[b-6z1l2e7fx7] {
    width: 100%;
    justify-content: center;
}

/* Testimonials Section */
.testimonials-section[b-6z1l2e7fx7] {
    padding: 5rem 0;
}

.testimonials-grid[b-6z1l2e7fx7] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial[b-6z1l2e7fx7] {
    background: linear-gradient(180deg, rgba(28, 42, 67, 0.92) 0%, rgba(22, 32, 51, 0.96) 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #24324d;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonial:hover[b-6z1l2e7fx7] {
    transform: translateY(-4px);
    border-color: #2f4266;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.testimonial-content p[b-6z1l2e7fx7] {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author[b-6z1l2e7fx7] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar[b-6z1l2e7fx7] {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img[b-6z1l2e7fx7] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-name[b-6z1l2e7fx7] {
    font-weight: 700;
    color: var(--text-dark);
}

.author-title[b-6z1l2e7fx7] {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section[b-6z1l2e7fx7] {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.cta-section[b-6z1l2e7fx7]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content[b-6z1l2e7fx7] {
    position: relative;
    z-index: 1;
}

.cta-content h2[b-6z1l2e7fx7] {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p[b-6z1l2e7fx7] {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons[b-6z1l2e7fx7] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline[b-6z1l2e7fx7] {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-buttons .btn-outline:hover[b-6z1l2e7fx7] {
    background: var(--white);
    color: var(--primary-color);
}


/* Animations */
@keyframes pulse-b-6z1l2e7fx7 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes float-b-6z1l2e7fx7 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes trail-b-6z1l2e7fx7 {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section[b-6z1l2e7fx7] {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .hero-content[b-6z1l2e7fx7] {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-title[b-6z1l2e7fx7] {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description[b-6z1l2e7fx7] {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        color: #9fb0d0;
    }
    
    .hero-buttons[b-6z1l2e7fx7] {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn[b-6z1l2e7fx7] {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats[b-6z1l2e7fx7] {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number[b-6z1l2e7fx7] {
        font-size: 1.5rem;
    }
    
    .tracker-panel[b-6z1l2e7fx7] {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid[b-6z1l2e7fx7] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card[b-6z1l2e7fx7] {
        padding: 1.5rem;
    }
    
    .steps[b-6z1l2e7fx7] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid[b-6z1l2e7fx7] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured[b-6z1l2e7fx7] {
        transform: none;
    }
    
    .testimonials-grid[b-6z1l2e7fx7] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons[b-6z1l2e7fx7] {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-buttons .btn[b-6z1l2e7fx7] {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-section[b-6z1l2e7fx7] {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .hero-content[b-6z1l2e7fx7] {
        padding: 0 0.75rem;
    }
    
    .hero-title[b-6z1l2e7fx7] {
        font-size: 1.75rem;
    }
    
    .hero-description[b-6z1l2e7fx7] {
        font-size: 0.875rem;
    }
    
    .hero-buttons .btn[b-6z1l2e7fx7] {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .hero-stats[b-6z1l2e7fx7] {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat[b-6z1l2e7fx7] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .stat-number[b-6z1l2e7fx7] {
        font-size: 1.25rem;
    }
    
    .stat-label[b-6z1l2e7fx7] {
        font-size: 0.75rem;
        color: #9fb0d0;
    }
    
    .tracker-panel[b-6z1l2e7fx7] {
        max-width: 360px;
    }
    
    .feature-card[b-6z1l2e7fx7] {
        padding: 1rem;
    }
    
    .feature-card h3[b-6z1l2e7fx7] {
        font-size: 1.25rem;
    }
    
    .pricing-card[b-6z1l2e7fx7] {
        padding: 1.5rem;
    }
    
    .testimonial[b-6z1l2e7fx7] {
        padding: 1.5rem;
    }
    
    .section-title[b-6z1l2e7fx7] {
        font-size: 2rem;
    }
    
    .cta-content h2[b-6z1l2e7fx7] {
        font-size: 2rem;
    }
    
    .cta-content p[b-6z1l2e7fx7] {
        font-size: 1rem;
    }
}
/* _content/mouse-jiggler-landing/Components/Pages/Login.razor.rz.scp.css */
/* Authentication Pages Styles */
.auth-container[b-hhzivh5rc3] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

/* Reset any conflicting styles */
.auth-container *[b-hhzivh5rc3] {
    box-sizing: border-box;
}

.auth-container[b-hhzivh5rc3]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.auth-email-password-form[b-hhzivh5rc3] {
    display: none;
}

.auth-footer[b-hhzivh5rc3] {
    display: none;
}

.divider[b-hhzivh5rc3] {
    display: none;
}

.auth-card[b-hhzivh5rc3] {
    background: #162033;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
}

.auth-brand[b-hhzivh5rc3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.auth-brand-text[b-hhzivh5rc3] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
    white-space: nowrap;
}

.auth-header[b-hhzivh5rc3] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo[b-hhzivh5rc3] {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
}

.auth-title[b-hhzivh5rc3] {
    font-size: 1.875rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.auth-subtitle[b-hhzivh5rc3] {
    color: #9fb0d0;
    font-size: 1rem;
    line-height: 1.5;
}

.auth-form[b-hhzivh5rc3] {
    margin-bottom: 2rem;
}

.form-group[b-hhzivh5rc3] {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-label[b-hhzivh5rc3] {
    display: block;
    font-weight: 600;
    color: #9fb0d0;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Form Input Styles - Enhanced for Blazor Components */
.form-input[b-hhzivh5rc3],
input[type="email"][b-hhzivh5rc3],
input[type="password"][b-hhzivh5rc3],
input[type="text"][b-hhzivh5rc3] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

.form-input:focus[b-hhzivh5rc3],
input[type="email"]:focus[b-hhzivh5rc3],
input[type="password"]:focus[b-hhzivh5rc3],
input[type="text"]:focus[b-hhzivh5rc3] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-input[b-hhzivh5rc3]::placeholder,
input[type="email"][b-hhzivh5rc3]::placeholder,
input[type="password"][b-hhzivh5rc3]::placeholder,
input[type="text"][b-hhzivh5rc3]::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

/* Specific styling for Blazor InputText components */
[b-hhzivh5rc3] input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

[b-hhzivh5rc3] input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

[b-hhzivh5rc3] input::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

.password-input-container[b-hhzivh5rc3] {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-input-container .form-input[b-hhzivh5rc3],
.password-input-container input[b-hhzivh5rc3] {
    padding-right: 3rem !important; /* Space for the toggle button */
    width: 100%;
}

.password-input-container[b-hhzivh5rc3]  input {
    padding-right: 3rem !important; /* Space for the toggle button */
    width: 100%;
}

.password-toggle[b-hhzivh5rc3] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9fb0d0;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.password-toggle:hover[b-hhzivh5rc3] {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.15);
}

.password-toggle i[b-hhzivh5rc3] {
    font-size: 1rem;
    pointer-events: none;
}

.form-options[b-hhzivh5rc3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-container[b-hhzivh5rc3] {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.875rem;
    color: #9fb0d0;
}

.checkbox-container input[b-hhzivh5rc3] {
    margin-right: 0.5rem;
}

.forgot-password[b-hhzivh5rc3] {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-password:hover[b-hhzivh5rc3] {
    color: #2563eb;
}

.btn-full[b-hhzivh5rc3] {
    width: 100%;
    justify-content: center;
}

.auth-footer[b-hhzivh5rc3] {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.auth-footer p[b-hhzivh5rc3] {
    color: #9fb0d0;
    font-size: 0.875rem;
}

.auth-link[b-hhzivh5rc3] {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover[b-hhzivh5rc3] {
    color: #2563eb;
}

.divider[b-hhzivh5rc3] {
    position: relative;
    text-align: center;
    margin: 1rem 0;
}

.divider[b-hhzivh5rc3]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #24324d;
}

.divider span[b-hhzivh5rc3] {
    background: #162033;
    padding: 0 1rem;
    color: #9fb0d0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.social-login[b-hhzivh5rc3] {
    display: flex;
    gap: 0.75rem;
    padding-left: 1.6rem;
}

.google-signin-wrapper[b-hhzivh5rc3] {
    position: relative;
    display: inline-block;
    width: 250px;
    height: 44px;
    border-radius: 0.25rem;
    overflow: hidden;
    cursor: pointer;
}

.google-signin-wrapper > div:first-child[b-hhzivh5rc3] {
    position: relative;
    width: 100%;
    height: 100%;
}

.google-signin-wrapper iframe[b-hhzivh5rc3] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.google-signin-custom-btn[b-hhzivh5rc3] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: stretch;
    flex-direction: row;
    gap: 0;
    justify-content: flex-start;
    pointer-events: none;
    z-index: 0;
    color: white;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    overflow: hidden;
}

.google-signin-custom-btn-icon[b-hhzivh5rc3] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 100%;
    min-width: 44px;
    background: white;
    border-radius: 0.25rem 0 0 0.25rem;
    border: 1px solid #4285F4;
}

.google-signin-custom-btn-icon svg[b-hhzivh5rc3] {
    width: 20px;
    height: 20px;
}

.google-signin-custom-btn-text[b-hhzivh5rc3] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-width: 0;
    white-space: nowrap;
    padding: 0 16px;
    background: #4285F4;
    border-radius: 0 0.25rem 0.25rem 0;
}

.social-btn[b-hhzivh5rc3] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    background: #111a2e;
    color: #f3f7ff;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.social-btn:hover[b-hhzivh5rc3] {
    border-color: #3b82f6;
    background: #162033;
}

.google-btn:hover[b-hhzivh5rc3] {
    border-color: #DB4437;
    color: #DB4437;
}

.github-btn:hover[b-hhzivh5rc3] {
    border-color: #333;
    color: #333;
}

/* Password Strength Indicator */
.password-strength[b-hhzivh5rc3] {
    margin-top: 0.5rem;
}

.strength-bar[b-hhzivh5rc3] {
    width: 100%;
    height: 4px;
    background: #24324d;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.strength-fill[b-hhzivh5rc3] {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-text[b-hhzivh5rc3] {
    font-size: 0.75rem;
    color: #9fb0d0;
}

/* Password Match Indicator */
.password-match[b-hhzivh5rc3] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #10B981;
}

/* Responsive Design */
@media (max-width: 480px) {
    .auth-card[b-hhzivh5rc3] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .auth-title[b-hhzivh5rc3] {
        font-size: 1.5rem;
    }
    
    .social-login[b-hhzivh5rc3] {
        flex-direction: column;
    }
}

/* Alert Styles */
.alert[b-hhzivh5rc3] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.alert-error[b-hhzivh5rc3] {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #B91C1C;
}

.alert-success[b-hhzivh5rc3] {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #15803D;
}

.alert i[b-hhzivh5rc3] {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Loading Styles */
.btn-primary:disabled[b-hhzivh5rc3] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary:disabled:hover[b-hhzivh5rc3] {
    background-color: #3b82f6;
    transform: none;
}

.fa-spinner[b-hhzivh5rc3] {
    animation: spin-b-hhzivh5rc3 1s linear infinite;
}

@keyframes spin-b-hhzivh5rc3 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Validation Styles */
.validation-summary[b-hhzivh5rc3] {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #B91C1C;
    font-size: 0.875rem;
}

.validation-summary ul[b-hhzivh5rc3] {
    margin: 0;
    padding-left: 1.25rem;
}

.validation-message[b-hhzivh5rc3] {
    color: #B91C1C;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}
/* _content/mouse-jiggler-landing/Components/Pages/PaymentSuccess.razor.rz.scp.css */
.success-container[b-47g9ph46of] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

.success-container[b-47g9ph46of]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.success-card[b-47g9ph46of] {
    background: #162033;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
    text-align: center;
}

.success-icon[b-47g9ph46of] {
    margin-bottom: 1.5rem;
}

.success-icon i[b-47g9ph46of] {
    font-size: 5rem;
    color: #10B981;
    animation: scaleIn-b-47g9ph46of 0.5s ease-out;
}

@keyframes scaleIn-b-47g9ph46of {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title[b-47g9ph46of] {
    font-size: 2rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 1rem;
}

.success-message[b-47g9ph46of] {
    color: #9fb0d0;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.success-details[b-47g9ph46of] {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item[b-47g9ph46of] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #059669;
    font-weight: 500;
}

.detail-item i[b-47g9ph46of] {
    font-size: 1.25rem;
}

.redirect-info[b-47g9ph46of] {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.redirect-info p[b-47g9ph46of] {
    margin: 0;
    color: #F59E0B;
    font-weight: 500;
}

.countdown[b-47g9ph46of] {
    font-weight: 700;
    color: #3b82f6;
    font-size: 1.25rem;
}

.success-actions[b-47g9ph46of] {
    display: flex;
    justify-content: center;
}

.success-actions .btn[b-47g9ph46of] {
    min-width: 200px;
}

@media (max-width: 480px) {
    .success-card[b-47g9ph46of] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    .success-title[b-47g9ph46of] {
        font-size: 1.5rem;
    }
    .success-icon i[b-47g9ph46of] {
        font-size: 4rem;
    }
    .success-message[b-47g9ph46of] {
        font-size: 1rem;
    }
}
/* _content/mouse-jiggler-landing/Components/Pages/Pricing.razor.rz.scp.css */
/* Pricing Page - copy of Home #pricing section */
.pricing-page[b-f1dckxikup] {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --secondary-color: #60a5fa;
    --text-dark: #f3f7ff;
    --text-light: #9fb0d0;
    --background-light: #111a2e;
    --white: #162033;
    min-height: 100vh;
    background: transparent;
    padding: 2rem 0 4rem;
}

.pricing-section[b-f1dckxikup] {
    padding: 4rem 0 2rem;
}

.container[b-f1dckxikup] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title[b-f1dckxikup] {
    text-align: center;
    font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.pricing-grid[b-f1dckxikup] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card[b-f1dckxikup] {
    background: linear-gradient(180deg, rgba(28, 42, 67, 0.92) 0%, rgba(22, 32, 51, 0.96) 100%);
    border: 2px solid #24324d;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover[b-f1dckxikup] {
    transform: translateY(-4px);
    border-color: #2f4266;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.pricing-card.featured[b-f1dckxikup] {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.pricing-card.featured:hover[b-f1dckxikup] {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge[b-f1dckxikup] {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header[b-f1dckxikup] {
    text-align: center;
}

.pricing-header h3[b-f1dckxikup] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
    margin-bottom: 1rem;
}

.price[b-f1dckxikup] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.currency[b-f1dckxikup] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
}

.amount[b-f1dckxikup] {
    font-size: 3rem;
    font-weight: 800;
    color: #f3f7ff;
}

.period[b-f1dckxikup] {
    font-size: 1rem;
    color: #9fb0d0;
}

.pricing-header p[b-f1dckxikup] {
    color: #9fb0d0;
    margin-top: 0.5rem;
}

.pricing-features[b-f1dckxikup] {
    margin: 0.75rem 0;
    text-align: left;
    list-style: none;
    padding: 0;
}

.pricing-features li[b-f1dckxikup] {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9fb0d0;
}

.pricing-features i[b-f1dckxikup] {
    color: #10B981;
    font-size: 1rem;
}

.savings[b-f1dckxikup] {
    color: #10B981;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.btn[b-f1dckxikup] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary[b-f1dckxikup] {
    background: linear-gradient(180deg, #4a90ff 0%, #2563eb 100%);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary:hover[b-f1dckxikup] {
    background: linear-gradient(180deg, #5aa0ff 0%, #2f6ef0 100%);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

.btn-outline[b-f1dckxikup] {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover[b-f1dckxikup] {
    background: var(--primary-color);
    color: var(--white);
}

.btn-full[b-f1dckxikup] {
    width: 100%;
}

.pricing-page-actions[b-f1dckxikup] {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .pricing-grid[b-f1dckxikup] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured[b-f1dckxikup] {
        transform: none;
    }

    .pricing-card.featured:hover[b-f1dckxikup] {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .pricing-card[b-f1dckxikup] {
        padding: 1.5rem;
    }

    .section-title[b-f1dckxikup] {
        font-size: 2rem;
    }
}
/* _content/mouse-jiggler-landing/Components/Pages/PrivacyPolicy.razor.rz.scp.css */
.legal-page[b-l50kzqsslz] {
    background: #0b1220;
    min-height: calc(100vh - 300px);
    padding: 4rem 0;
}

.legal-content[b-l50kzqsslz] {
    background: #162033;
    border-radius: 0.5rem;
    padding: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1[b-l50kzqsslz] {
    font-size: 2rem;
    font-weight: 700;
    color: #f3f7ff;
    margin-bottom: 1rem;
}

.effective-date[b-l50kzqsslz],
.website[b-l50kzqsslz] {
    color: #9fb0d0;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.website a[b-l50kzqsslz] {
    color: #3b82f6;
    text-decoration: none;
}

.website a:hover[b-l50kzqsslz] {
    text-decoration: underline;
}

.legal-section[b-l50kzqsslz] {
    margin-top: 2.5rem;
}

.legal-section:first-of-type[b-l50kzqsslz] {
    margin-top: 2rem;
}

.legal-section h2[b-l50kzqsslz] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f3f7ff;
    margin-bottom: 1rem;
}

.legal-section h3[b-l50kzqsslz] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f3f7ff;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-section h4[b-l50kzqsslz] {
    font-size: 1rem;
    font-weight: 600;
    color: #9fb0d0;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p[b-l50kzqsslz] {
    color: #9fb0d0;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.legal-section ul[b-l50kzqsslz] {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li[b-l50kzqsslz] {
    color: #9fb0d0;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.legal-section ul li strong[b-l50kzqsslz] {
    color: #f3f7ff;
    font-weight: 600;
}

.legal-section ol[b-l50kzqsslz] {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ol li[b-l50kzqsslz] {
    color: #9fb0d0;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.legal-section code[b-l50kzqsslz] {
    background: #111a2e;
    color: #DC2626;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    font-family: 'Courier New', monospace;
}

.legal-section a[b-l50kzqsslz] {
    color: #3b82f6;
    text-decoration: none;
}

.legal-section a:hover[b-l50kzqsslz] {
    text-decoration: underline;
}

.legal-divider[b-l50kzqsslz] {
    height: 2px;
    background: #24324d;
    margin: 3rem 0;
}

/* Cookie Table Styles */
.cookie-table[b-l50kzqsslz] {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    overflow: hidden;
}

.cookie-table thead[b-l50kzqsslz] {
    background: #111a2e;
}

.cookie-table thead th[b-l50kzqsslz] {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #f3f7ff;
    font-size: 0.875rem;
    border-bottom: 2px solid #24324d;
}

.cookie-table tbody tr[b-l50kzqsslz] {
    border-bottom: 1px solid #24324d;
}

.cookie-table tbody tr:last-child[b-l50kzqsslz] {
    border-bottom: none;
}

.cookie-table tbody td[b-l50kzqsslz] {
    padding: 0.875rem 1rem;
    color: #9fb0d0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-table tbody td:first-child[b-l50kzqsslz] {
    font-weight: 500;
}

.cookie-table tbody tr:hover[b-l50kzqsslz] {
    background: #111a2e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-page[b-l50kzqsslz] {
        padding: 2rem 0;
    }

    .legal-content[b-l50kzqsslz] {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .legal-content h1[b-l50kzqsslz] {
        font-size: 1.5rem;
    }

    .legal-section h2[b-l50kzqsslz] {
        font-size: 1.125rem;
    }

    .legal-section h3[b-l50kzqsslz] {
        font-size: 1rem;
    }

    .legal-section h4[b-l50kzqsslz] {
        font-size: 0.9375rem;
    }

    .cookie-table[b-l50kzqsslz] {
        font-size: 0.8125rem;
    }

    .cookie-table thead th[b-l50kzqsslz],
    .cookie-table tbody td[b-l50kzqsslz] {
        padding: 0.625rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .legal-content[b-l50kzqsslz] {
        padding: 1.5rem 1rem;
    }

    .legal-content h1[b-l50kzqsslz] {
        font-size: 1.25rem;
    }

    .legal-section[b-l50kzqsslz] {
        margin-top: 2rem;
    }

    .legal-section p[b-l50kzqsslz],
    .legal-section ul li[b-l50kzqsslz] {
        font-size: 0.875rem;
    }

    .cookie-table[b-l50kzqsslz] {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cookie-table thead[b-l50kzqsslz],
    .cookie-table tbody[b-l50kzqsslz],
    .cookie-table tr[b-l50kzqsslz],
    .cookie-table th[b-l50kzqsslz],
    .cookie-table td[b-l50kzqsslz] {
        display: block;
    }

    .cookie-table thead[b-l50kzqsslz] {
        display: none;
    }

    .cookie-table tbody tr[b-l50kzqsslz] {
        margin-bottom: 1rem;
        border: 1px solid #24324d;
        border-radius: 0.375rem;
    }

    .cookie-table tbody td[b-l50kzqsslz] {
        text-align: left;
        padding: 0.5rem 0.75rem;
        position: relative;
        padding-left: 40%;
        border-bottom: 1px solid #24324d;
    }

    .cookie-table tbody td:last-child[b-l50kzqsslz] {
        border-bottom: none;
    }

    .cookie-table tbody td[b-l50kzqsslz]::before {
        content: attr(data-label);
        position: absolute;
        left: 0.75rem;
        width: 35%;
        font-weight: 600;
        color: #f3f7ff;
    }

    .cookie-table tbody td:nth-child(1)[b-l50kzqsslz]::before {
        content: "Cookie Name";
    }

    .cookie-table tbody td:nth-child(2)[b-l50kzqsslz]::before {
        content: "Purpose";
    }

    .cookie-table tbody td:nth-child(3)[b-l50kzqsslz]::before {
        content: "Duration";
    }
}
/* _content/mouse-jiggler-landing/Components/Pages/ResetPassword.razor.rz.scp.css */
/* Authentication Pages Styles - Reused from Login */
.auth-container[b-0hvqutyq6g] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

.auth-container[b-0hvqutyq6g]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.auth-card[b-0hvqutyq6g] {
    background: #162033;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
}

.auth-header[b-0hvqutyq6g] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title[b-0hvqutyq6g] {
    font-size: 1.875rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.auth-subtitle[b-0hvqutyq6g] {
    color: #9fb0d0;
    font-size: 1rem;
    line-height: 1.5;
}

.form-group[b-0hvqutyq6g] {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-label[b-0hvqutyq6g] {
    display: block;
    font-weight: 600;
    color: #9fb0d0;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Form Input Styles - Enhanced for Blazor Components */
.form-input[b-0hvqutyq6g],
input[type="email"][b-0hvqutyq6g],
input[type="password"][b-0hvqutyq6g],
input[type="text"][b-0hvqutyq6g] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

.form-input:focus[b-0hvqutyq6g],
input[type="email"]:focus[b-0hvqutyq6g],
input[type="password"]:focus[b-0hvqutyq6g],
input[type="text"]:focus[b-0hvqutyq6g] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-input[b-0hvqutyq6g]::placeholder,
input[type="email"][b-0hvqutyq6g]::placeholder,
input[type="password"][b-0hvqutyq6g]::placeholder,
input[type="text"][b-0hvqutyq6g]::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

/* Specific styling for Blazor InputText components */
[b-0hvqutyq6g] input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #111a2e;
    box-sizing: border-box;
    display: block;
    line-height: 1.5;
    color: #f3f7ff;
}

[b-0hvqutyq6g] input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

[b-0hvqutyq6g] input::placeholder {
    color: rgba(159, 176, 208, 0.5);
    opacity: 1;
}

/* Form disabled state */
.form-input:disabled[b-0hvqutyq6g],
input[type="email"]:disabled[b-0hvqutyq6g],
input[type="password"]:disabled[b-0hvqutyq6g],
input[type="text"]:disabled[b-0hvqutyq6g] {
    background-color: #0b1220;
    cursor: not-allowed;
    opacity: 0.6;
}

[b-0hvqutyq6g] input:disabled {
    background-color: #0b1220;
    cursor: not-allowed;
    opacity: 0.6;
}

.password-input-container[b-0hvqutyq6g] {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-input-container .form-input[b-0hvqutyq6g],
.password-input-container input[b-0hvqutyq6g] {
    padding-right: 3rem;
    width: 100%;
}

.password-input-container[b-0hvqutyq6g]  input {
    padding-right: 3rem !important;
    width: 100%;
}

.password-toggle[b-0hvqutyq6g] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9fb0d0;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.password-toggle:hover[b-0hvqutyq6g] {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.15);
}

.password-toggle i[b-0hvqutyq6g] {
    font-size: 1rem;
    pointer-events: none;
}

/* Password Strength Indicator */
.password-strength[b-0hvqutyq6g] {
    margin-top: 0.5rem;
}

.strength-bar-container[b-0hvqutyq6g] {
    width: 100%;
    height: 4px;
    background: #24324d;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-bar[b-0hvqutyq6g] {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-text[b-0hvqutyq6g] {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Password Match Indicator */
.password-match[b-0hvqutyq6g] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #10B981;
}

.btn-full[b-0hvqutyq6g] {
    width: 100%;
    justify-content: center;
}

.btn-primary:disabled[b-0hvqutyq6g] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary:disabled:hover[b-0hvqutyq6g] {
    transform: none;
    box-shadow: none;
}

.auth-footer[b-0hvqutyq6g] {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-footer p[b-0hvqutyq6g] {
    color: #9fb0d0;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.auth-link[b-0hvqutyq6g] {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover[b-0hvqutyq6g] {
    color: #2563eb;
}

.alert[b-0hvqutyq6g] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    flex-direction: column;
}

.alert-error[b-0hvqutyq6g] {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #B91C1C;
}

.alert-success[b-0hvqutyq6g] {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #15803D;
}

.alert i[b-0hvqutyq6g] {
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.validation-message[b-0hvqutyq6g] {
    color: #B91C1C;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Success redirect message */
.redirect-message[b-0hvqutyq6g] {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #9fb0d0;
    text-align: center;
}

.fa-spinner[b-0hvqutyq6g] {
    animation: spin-b-0hvqutyq6g 1s linear infinite;
}

@keyframes spin-b-0hvqutyq6g {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 480px) {
    .auth-card[b-0hvqutyq6g] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .auth-title[b-0hvqutyq6g] {
        font-size: 1.5rem;
    }
}
/* _content/mouse-jiggler-landing/Components/Pages/Settings.razor.rz.scp.css */
/* Settings Page Styles */
.settings-container[b-6gjpq9tzoc] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

.settings-container[b-6gjpq9tzoc]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.settings-card[b-6gjpq9tzoc] {
    background: #162033;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
}

.settings-header[b-6gjpq9tzoc] {
    text-align: center;
    margin-bottom: 2rem;
}

.settings-title[b-6gjpq9tzoc] {
    font-size: 1.875rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.settings-subtitle[b-6gjpq9tzoc] {
    color: #9fb0d0;
    font-size: 1rem;
    line-height: 1.5;
}

.loading-container[b-6gjpq9tzoc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #9fb0d0;
}

.loading-container i[b-6gjpq9tzoc] {
    margin-bottom: 1rem;
    color: #3b82f6;
}

.loading-container p[b-6gjpq9tzoc] {
    margin: 0;
}

.user-info-section[b-6gjpq9tzoc] {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: #111a2e;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.user-avatar[b-6gjpq9tzoc] {
    font-size: 4rem;
    color: #3b82f6;
}

.user-details[b-6gjpq9tzoc] {
    flex: 1;
}

.user-details h2[b-6gjpq9tzoc] {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
}

.user-email[b-6gjpq9tzoc] {
    color: #9fb0d0;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.subscription-badge[b-6gjpq9tzoc] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.subscription-badge i[b-6gjpq9tzoc] {
    font-size: 1rem;
}

.subscription-expiry-notice[b-6gjpq9tzoc] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.subscription-expiry-notice i[b-6gjpq9tzoc] {
    font-size: 1rem;
    color: #F59E0B;
}

.settings-actions[b-6gjpq9tzoc] {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn[b-6gjpq9tzoc] {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    vertical-align: middle;
}

.btn i[b-6gjpq9tzoc] {
    display: contents;
    align-items: center;
    font-size: 1rem;
}

.btn-primary[b-6gjpq9tzoc] {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
}

.btn-primary:hover[b-6gjpq9tzoc] {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-secondary[b-6gjpq9tzoc] {
    background: #6B7280;
    color: white;
}

.btn-secondary:hover[b-6gjpq9tzoc] {
    background: #4B5563;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.alert[b-6gjpq9tzoc] {
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.alert-error[b-6gjpq9tzoc] {
    background: rgba(239, 68, 68, 0.1);
    color: #991B1B;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert i[b-6gjpq9tzoc] {
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .user-info-section[b-6gjpq9tzoc] {
        flex-direction: column;
        text-align: center;
    }
    
    .user-avatar[b-6gjpq9tzoc] {
        font-size: 3rem;
    }
}
/* _content/mouse-jiggler-landing/Components/Pages/SignUp.razor.rz.scp.css */
/* Authentication Pages Styles */
.auth-container[b-rht7kreru2] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

.auth-container[b-rht7kreru2]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.auth-email-password-form[b-rht7kreru2] {
    display: none;
}

.auth-footer[b-rht7kreru2] {
    display: none;
}

.auth-card[b-rht7kreru2] {
    background: #162033;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
}

.auth-brand[b-rht7kreru2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.auth-brand-text[b-rht7kreru2] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
    white-space: nowrap;
}

.auth-header[b-rht7kreru2] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo[b-rht7kreru2] {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
}

.auth-title[b-rht7kreru2] {
    font-size: 1.875rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.auth-subtitle[b-rht7kreru2] {
    color: #9fb0d0;
    font-size: 1rem;
    line-height: 1.5;
}

.auth-form[b-rht7kreru2] {
    margin-bottom: 2rem;
}

.form-group[b-rht7kreru2] {
    margin-bottom: 1.5rem;
}

.form-label[b-rht7kreru2] {
    display: block;
    font-weight: 600;
    color: #9fb0d0;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input[b-rht7kreru2] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #111a2e;
}

.form-input:focus[b-rht7kreru2] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-input[b-rht7kreru2]::placeholder {
    color: rgba(159, 176, 208, 0.5);
}

.password-input-container[b-rht7kreru2] {
    position: relative;
}

.password-toggle[b-rht7kreru2] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9fb0d0;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: color 0.2s ease;
}

.password-toggle:hover[b-rht7kreru2] {
    color: #3b82f6;
}

.form-options[b-rht7kreru2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-container[b-rht7kreru2] {
    align-items: center;
    cursor: pointer;
    font-size: 0.875rem;
    color: #9fb0d0;
}

.checkbox-container input[b-rht7kreru2] {
    margin-right: 0.5rem;
}

.forgot-password[b-rht7kreru2] {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-password:hover[b-rht7kreru2] {
    color: #2563eb;
}

.btn-full[b-rht7kreru2] {
    width: 100%;
    justify-content: center;
}

.auth-footer[b-rht7kreru2] {
    text-align: center;
    margin-bottom: 1rem;
}

.auth-footer p[b-rht7kreru2] {
    color: #9fb0d0;
    font-size: 0.875rem;
}

.auth-link[b-rht7kreru2] {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover[b-rht7kreru2] {
    color: #2563eb;
}

.divider[b-rht7kreru2] {
    position: relative;
    text-align: center;
    margin: 1rem 0;
}

.divider[b-rht7kreru2]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #24324d;
}

.divider span[b-rht7kreru2] {
    background: #162033;
    padding: 0 1rem;
    color: #9fb0d0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.social-login[b-rht7kreru2] {
    display: flex;
    gap: 0.75rem;
    padding-left: 1.6rem;
}

.google-signin-wrapper[b-rht7kreru2] {
    position: relative;
    display: inline-block;
    width: 250px;
    height: 44px;
    border-radius: 0.25rem;
    overflow: hidden;
    cursor: pointer;
}

.google-signin-wrapper > div:first-child[b-rht7kreru2] {
    position: relative;
    width: 100%;
    height: 100%;
}

.google-signin-wrapper iframe[b-rht7kreru2] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.google-signin-custom-btn[b-rht7kreru2] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: stretch;
    flex-direction: row;
    gap: 0;
    justify-content: flex-start;
    pointer-events: none;
    z-index: 0;
    color: white;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    overflow: hidden;
}

.google-signin-custom-btn-icon[b-rht7kreru2] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 100%;
    min-width: 44px;
    background: white;
    border-radius: 0.25rem 0 0 0.25rem;
    border: 1px solid #4285F4;
}

.google-signin-custom-btn-icon svg[b-rht7kreru2] {
    width: 20px;
    height: 20px;
}

.google-signin-custom-btn-text[b-rht7kreru2] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-width: 0;
    white-space: nowrap;
    padding: 0 16px;
    background: #4285F4;
    border-radius: 0 0.25rem 0.25rem 0;
}

.social-btn[b-rht7kreru2] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #24324d;
    border-radius: 0.5rem;
    background: #111a2e;
    color: #f3f7ff;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.social-btn:hover[b-rht7kreru2] {
    border-color: #3b82f6;
    background: #162033;
}

.google-btn:hover[b-rht7kreru2] {
    border-color: #DB4437;
    color: #DB4437;
}

.github-btn:hover[b-rht7kreru2] {
    border-color: #333;
    color: #333;
}


/* Password Match Indicator */
.password-match[b-rht7kreru2] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #10B981;
}

/* Loading and Alert Styles */
.loading-container[b-rht7kreru2] {
    text-align: center;
    padding: 2rem;
    color: #9fb0d0;
}

.loading-container i[b-rht7kreru2] {
    margin-bottom: 1rem;
    color: #3b82f6;
}

.alert[b-rht7kreru2] {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.alert-error[b-rht7kreru2] {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #DC2626;
}

.alert-success[b-rht7kreru2] {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #16A34A;
}

/* Responsive Design */
@media (max-width: 480px) {
    .auth-card[b-rht7kreru2] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .auth-title[b-rht7kreru2] {
        font-size: 1.5rem;
    }
    
    .social-login[b-rht7kreru2] {
        flex-direction: column;
    }
}
/* _content/mouse-jiggler-landing/Components/Pages/Subscription.razor.rz.scp.css */
/* Subscription Page Styles */
.subscription-container[b-9lmzi73ay1] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

.subscription-container[b-9lmzi73ay1]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.subscription-card[b-9lmzi73ay1] {
    background: #162033;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 700px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
}

.subscription-header[b-9lmzi73ay1] {
    text-align: center;
    margin-bottom: 2rem;
}

.subscription-title[b-9lmzi73ay1] {
    font-size: 1.875rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.subscription-subtitle[b-9lmzi73ay1] {
    color: #9fb0d0;
    font-size: 1rem;
    line-height: 1.5;
}

.loading-container[b-9lmzi73ay1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #9fb0d0;
}

.loading-container i[b-9lmzi73ay1] {
    margin-bottom: 1rem;
    color: #3b82f6;
}

.loading-container p[b-9lmzi73ay1] {
    margin: 0;
}

.subscription-info[b-9lmzi73ay1] {
    margin-bottom: 2rem;
}

.subscription-badge-large[b-9lmzi73ay1] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.subscription-badge-large i[b-9lmzi73ay1] {
    font-size: 3rem;
}

.subscription-badge-large h2[b-9lmzi73ay1] {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
}

.subscription-details[b-9lmzi73ay1] {
    background: #111a2e;
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.detail-row[b-9lmzi73ay1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #24324d;
}

.detail-row:last-child[b-9lmzi73ay1] {
    border-bottom: none;
}

.detail-label[b-9lmzi73ay1] {
    font-weight: 600;
    color: #9fb0d0;
}

.detail-value[b-9lmzi73ay1] {
    color: #f3f7ff;
    font-weight: 600;
}

.status-active[b-9lmzi73ay1] {
    color: #10B981;
}

.status-inactive[b-9lmzi73ay1] {
    color: #9fb0d0;
}

.status-cancelled[b-9lmzi73ay1] {
    color: #EF4444;
}

.status-expired[b-9lmzi73ay1] {
    color: #F59E0B;
}

.subscription-actions[b-9lmzi73ay1] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.no-subscription[b-9lmzi73ay1] {
    text-align: center;
}

.no-subscription i[b-9lmzi73ay1] {
    color: #3b82f6;
    margin-bottom: 0.75rem;
}

.no-subscription h3[b-9lmzi73ay1] {
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.no-subscription > p[b-9lmzi73ay1] {
    color: #9fb0d0;
}

.pricing-grid[b-9lmzi73ay1] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
    max-width: 100%;
}

.pricing-card[b-9lmzi73ay1] {
    background: #162033;
    border: 2px solid #24324d;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover[b-9lmzi73ay1] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured[b-9lmzi73ay1] {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.pricing-card.featured:hover[b-9lmzi73ay1] {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge[b-9lmzi73ay1] {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header[b-9lmzi73ay1] {
    text-align: center;
}

.pricing-header h4[b-9lmzi73ay1] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
    margin-bottom: 1rem;
}

.price[b-9lmzi73ay1] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency[b-9lmzi73ay1] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
}

.amount[b-9lmzi73ay1] {
    font-size: 3rem;
    font-weight: 800;
    color: #f3f7ff;
}

.period[b-9lmzi73ay1] {
    font-size: 1rem;
    color: #9fb0d0;
}

.savings[b-9lmzi73ay1] {
    color: #10B981;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.pricing-features[b-9lmzi73ay1] {
    margin: 0.75rem 0;
    text-align: left;
}

.pricing-features ul[b-9lmzi73ay1] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li[b-9lmzi73ay1] {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9fb0d0;
}

.pricing-features i[b-9lmzi73ay1] {
    color: #10B981;
    font-size: 1rem;
}

.btn-full[b-9lmzi73ay1] {
    width: 100%;
    justify-content: center;
}

.alert[b-9lmzi73ay1] {
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.alert-success[b-9lmzi73ay1] {
    background: rgba(16, 185, 129, 0.1);
    color: #065F46;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-error[b-9lmzi73ay1] {
    background: rgba(239, 68, 68, 0.1);
    color: #991B1B;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-warning[b-9lmzi73ay1] {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
    margin-top: 1rem;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.alert-success i[b-9lmzi73ay1] {
    color: #059669;
}

.alert-warning i[b-9lmzi73ay1] {
    color: #D97706;
}

.alert i[b-9lmzi73ay1] {
    font-size: 1.25rem;
}

.btn[b-9lmzi73ay1] {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    vertical-align: middle;
}

.btn i[b-9lmzi73ay1] {
    display: contents;
    align-items: center;
    font-size: 1rem;
}

.btn-primary[b-9lmzi73ay1] {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
}

.btn-primary:hover[b-9lmzi73ay1] {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-secondary[b-9lmzi73ay1] {
    background: #6B7280;
    color: white;
}

.btn-secondary:hover[b-9lmzi73ay1] {
    background: #4B5563;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-danger[b-9lmzi73ay1] {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
}

.btn-danger:hover[b-9lmzi73ay1] {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3);
}

.btn-danger:disabled[b-9lmzi73ay1] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-danger:disabled:hover[b-9lmzi73ay1] {
    transform: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .subscription-badge-large[b-9lmzi73ay1] {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .subscription-badge-large i[b-9lmzi73ay1] {
        font-size: 2rem;
    }
    
    .subscription-badge-large h2[b-9lmzi73ay1] {
        font-size: 1.5rem;
    }

    .pricing-grid[b-9lmzi73ay1] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }

    .pricing-card.featured[b-9lmzi73ay1] {
        transform: scale(1);
    }

    .pricing-card.featured:hover[b-9lmzi73ay1] {
        transform: translateY(-5px);
    }

    .amount[b-9lmzi73ay1] {
        font-size: 2.5rem;
    }
}
/* _content/mouse-jiggler-landing/Components/Pages/TrialExpired.razor.rz.scp.css */
/* Trial Expired Page Styles */
.trial-expired-container[b-d83049akee] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1220;
    padding: 2rem 1rem;
    position: relative;
}

.trial-expired-container[b-d83049akee]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2324324d" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.trial-expired-card[b-d83049akee] {
    background: #162033;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    width: 100%;
    max-width: 700px;
    position: relative;
    z-index: 1;
    border: 1px solid #24324d;
}

.trial-expired-message[b-d83049akee] {
    text-align: center;
    margin-bottom: 2rem;
}

.trial-expired-message i[b-d83049akee] {
    font-size: 3rem;
    color: #F59E0B;
    margin-bottom: 0.75rem;
}

.trial-expired-message h1[b-d83049akee] {
    font-size: 1.875rem;
    font-weight: 800;
    color: #f3f7ff;
    margin-bottom: 0.5rem;
}

.trial-expired-message p[b-d83049akee] {
    color: #9fb0d0;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.pricing-grid[b-d83049akee] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
    max-width: 100%;
}

.pricing-card[b-d83049akee] {
    background: #162033;
    border: 2px solid #24324d;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover[b-d83049akee] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured[b-d83049akee] {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.pricing-card.featured:hover[b-d83049akee] {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge[b-d83049akee] {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header[b-d83049akee] {
    text-align: center;
}

.pricing-header h4[b-d83049akee] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
    margin-bottom: 1rem;
}

.price[b-d83049akee] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency[b-d83049akee] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f7ff;
}

.amount[b-d83049akee] {
    font-size: 3rem;
    font-weight: 800;
    color: #f3f7ff;
}

.period[b-d83049akee] {
    font-size: 1rem;
    color: #9fb0d0;
}

.savings[b-d83049akee] {
    color: #10B981;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.pricing-features[b-d83049akee] {
    margin: 0.75rem 0;
    text-align: left;
}

.pricing-features ul[b-d83049akee] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li[b-d83049akee] {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9fb0d0;
}

.pricing-features i[b-d83049akee] {
    color: #10B981;
    font-size: 1rem;
}

.btn-full[b-d83049akee] {
    width: 100%;
    justify-content: center;
}

.trial-expired-actions[b-d83049akee] {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.alert[b-d83049akee] {
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.alert-error[b-d83049akee] {
    background: rgba(239, 68, 68, 0.1);
    color: #991B1B;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert i[b-d83049akee] {
    font-size: 1.25rem;
}

.btn[b-d83049akee] {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    vertical-align: middle;
}

.btn i[b-d83049akee] {
    display: contents;
    align-items: center;
    font-size: 1rem;
}

.btn-primary[b-d83049akee] {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
}

.btn-primary:hover[b-d83049akee] {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-secondary[b-d83049akee] {
    background: #6B7280;
    color: white;
}

.btn-secondary:hover[b-d83049akee] {
    background: #4B5563;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid[b-d83049akee] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }

    .pricing-card.featured[b-d83049akee] {
        transform: scale(1);
    }

    .pricing-card.featured:hover[b-d83049akee] {
        transform: translateY(-5px);
    }

    .amount[b-d83049akee] {
        font-size: 2.5rem;
    }
}
