/*
 * OpenExO Auth Pages Stylesheet
 * New design for login, register, and password reset pages
 */

/* ========================================
   CSS Reset & Base Styles
   ======================================== */

body.auth-page {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #E8E9FE 0%, #F5F5FF 30%, #FFFFFF 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

body.auth-page * {
    box-sizing: border-box;
}

/* ========================================
   Navigation Bar
   ======================================== */

.auth-navbar {
    background: white;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
}

.auth-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-nav-logo img {
    height: 32px;
    width: auto;
}

.auth-nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.auth-nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.auth-nav-links a:hover {
    color: #6366F1;
}

.auth-nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.auth-nav-signup {
    background: #FFE600;
    color: #000;
    padding: 8px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.auth-nav-signup:hover {
    background: #FFD700;
    transform: translateY(-1px);
    color: #000;
    text-decoration: none;
}

.auth-nav-login {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.auth-nav-login:hover {
    color: #6366F1;
    text-decoration: none;
}

.auth-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #333;
    padding: 0;
    line-height: 1;
}

/* Mobile Menu Panel */
.auth-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 16px 0;
    z-index: 1000;
}

.auth-mobile-menu.open {
    display: flex;
}

.auth-mobile-menu a {
    padding: 14px 24px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.2s;
}

.auth-mobile-menu a:hover {
    background: #f8f9fa;
    color: #6366F1;
}

.auth-mobile-menu-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 12px 24px;
}

.auth-mobile-menu-signup {
    background: #FFE600 !important;
    color: #000 !important;
    margin: 8px 24px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600 !important;
}

.auth-mobile-menu-signup:hover {
    background: #FFD700 !important;
}

/* ========================================
   Auth Section Layout
   ======================================== */

.auth-section {
    padding: 60px 0 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.auth-container.signup-container {
    max-width: 520px;
}

.auth-container.register-plan-container {
    max-width: 900px;
}

.auth-card {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
    border: 2px solid #e5e7eb;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    margin-top: 0;
}

.auth-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.auth-header p a {
    color: #6366F1;
    text-decoration: none;
    font-weight: 600;
}

.auth-header p a:hover {
    text-decoration: underline;
}

/* ========================================
   Form Elements
   ======================================== */

.auth-form-group {
    margin-bottom: 24px;
}

.auth-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.auth-form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s;
    font-family: inherit;
    background: white;
}

.auth-form-input:focus {
    outline: none;
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.auth-form-input::placeholder {
    color: #9ca3af;
}

.auth-form-input[readonly] {
    background: #f3f4f6;
    color: #6b7280;
}

.auth-password-toggle {
    position: relative;
}

.auth-password-toggle-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    transition: color 0.2s;
}

.auth-password-toggle-btn:hover {
    color: #6366F1;
}

.auth-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.auth-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.auth-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.auth-checkbox-group label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
    line-height: 1.6;
}

.auth-checkbox-group label a {
    color: #6366F1;
    text-decoration: none;
    font-weight: 600;
}

.auth-checkbox-group label a:hover {
    text-decoration: underline;
}

.auth-forgot-link {
    font-size: 14px;
    color: #6366F1;
    text-decoration: none;
    font-weight: 600;
}

.auth-forgot-link:hover {
    text-decoration: underline;
    color: #4F46E5;
}

/* ========================================
   Buttons
   ======================================== */

.auth-btn-primary {
    width: 100%;
    padding: 16px 32px;
    background: #6366F1;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.auth-btn-primary:hover {
    background: #4F46E5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: white;
}

.auth-btn-primary:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* ========================================
   Divider
   ======================================== */

.auth-divider {
    display: flex;
    align-items: center;
    margin: 32px 0;
    gap: 16px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.auth-divider span {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
}

/* ========================================
   Social Login Buttons
   ======================================== */

.auth-social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-social-btn {
    width: 100%;
    padding: 14px 24px;
    background: white;
    color: #333;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: inherit;
    text-decoration: none;
    position: relative;
}

.auth-social-btn:hover {
    background: #f8f9fa;
    border-color: #6366F1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    text-decoration: none;
    color: #333;
}

.auth-social-btn img {
    width: 20px;
    height: 20px;
}

.auth-social-btn.google {
    border-color: #4285F4;
}

.auth-social-btn.google:hover {
    background: #f8fbff;
    border-color: #4285F4;
}

.auth-social-btn.linkedin {
    border-color: #0A66C2;
}

.auth-social-btn.linkedin:hover {
    background: #f0f7ff;
    border-color: #0A66C2;
}

.auth-recommended-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: #10B981;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   More Options Toggle
   ======================================== */

.auth-more-options-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px;
    background: none;
    border: none;
    color: #6366F1;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
}

.auth-more-options-toggle:hover {
    color: #4F46E5;
}

.auth-more-options-toggle .toggle-icon {
    transition: transform 0.3s;
}

.auth-more-options-toggle.expanded .toggle-icon {
    transform: rotate(180deg);
}

.auth-more-options-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.auth-more-options-content.expanded {
    max-height: 500px;
}

.auth-more-options-inner {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================================
   Prompts & Links
   ======================================== */

.auth-prompt {
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    font-size: 15px;
    color: #666;
}

.auth-prompt a {
    color: #6366F1;
    text-decoration: none;
    font-weight: 700;
}

.auth-prompt a:hover {
    text-decoration: underline;
}

/* ========================================
   Benefits Banner (Signup)
   ======================================== */

.auth-benefits-banner {
    background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 100%);
    border-left: 4px solid #6366F1;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.auth-benefits-banner h3 {
    font-size: 14px;
    font-weight: 700;
    color: #6366F1;
    margin-bottom: 8px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.auth-benefits-list li {
    font-size: 13px;
    color: #4338CA;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-benefits-list li::before {
    content: "✓";
    color: #10B981;
    font-weight: bold;
    font-size: 14px;
}

/* ========================================
   Alerts & Error Messages
   ======================================== */

.auth-error-message {
    background: #FEE2E2;
    border: 1px solid #FCA5A5;
    color: #991B1B;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.auth-success-message {
    background: #D1FAE5;
    border: 1px solid #6EE7B7;
    color: #065F46;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.auth-info-message {
    background: #EEF2FF;
    border: 1px solid #A5B4FC;
    color: #3730A3;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.auth-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
}

.auth-alert-danger {
    background: #FEE2E2;
    border: 1px solid #FCA5A5;
    color: #991B1B;
}

.auth-alert-success {
    background: #D1FAE5;
    border: 1px solid #6EE7B7;
    color: #065F46;
}

.auth-alert-info {
    background: #EEF2FF;
    border: 1px solid #A5B4FC;
    color: #3730A3;
}

.auth-alert-close {
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.7;
}

.auth-alert-close:hover {
    opacity: 1;
}

/* ========================================
   Trust Indicators
   ======================================== */

.auth-trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    color: #888;
}

.auth-trust-indicators span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ========================================
   Form Row (Two columns)
   ======================================== */

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

/* ========================================
   Password Strength Indicator
   ======================================== */

.auth-password-strength {
    margin-top: 8px;
    font-size: 12px;
    display: none;
}

.auth-password-strength.show {
    display: block;
}

.auth-strength-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-bottom: 4px;
    overflow: hidden;
}

.auth-strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s;
    border-radius: 2px;
}

.auth-strength-fill.weak {
    width: 33%;
    background: #EF4444;
}

.auth-strength-fill.medium {
    width: 66%;
    background: #F59E0B;
}

.auth-strength-fill.strong {
    width: 100%;
    background: #10B981;
}

/* ========================================
   Web3 / Crypto Login Specific
   ======================================== */

.auth-web3-section {
    text-align: center;
}

.auth-web3-section img {
    max-width: 200px;
    margin-bottom: 20px;
}

.auth-metamask-accounts {
    margin: 20px 0;
}

.auth-metamask-accounts select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.auth-metamask-accounts select:focus {
    outline: none;
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.auth-signature-wrapper {
    margin: 20px 0;
}

.auth-signature-wrapper textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-family: monospace;
    resize: vertical;
    min-height: 100px;
}

.auth-signature-wrapper textarea:focus {
    outline: none;
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.auth-tooltip-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}

.auth-tooltip-wrapper .help-icon {
    color: #9ca3af;
    font-size: 18px;
    cursor: help;
}

.auth-tooltip-wrapper[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: #1a1a1a;
    color: white;
    font-size: 12px;
    border-radius: 8px;
    white-space: nowrap;
    max-width: 300px;
    white-space: normal;
    z-index: 100;
}

/* ========================================
   Register Plan Specific (Two-column layout)
   ======================================== */

.auth-register-plan-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.auth-plan-description {
    background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 100%);
    border-radius: 16px;
    padding: 32px;
    border-left: 4px solid #6366F1;
}

.auth-plan-description h2 {
    color: #1a1a1a;
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 0;
}

.auth-plan-description p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.8;
}

.auth-plan-perks {
    margin-top: 24px;
}

.auth-plan-perks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-plan-perks li {
    padding: 8px 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-plan-perks li::before {
    content: "✓";
    color: #10B981;
    font-weight: bold;
}

/* ========================================
   Helper Text / Links
   ======================================== */

.auth-helper-text {
    font-size: 13px;
    color: #666;
    margin-top: 16px;
    text-align: center;
}

.auth-helper-text a {
    color: #6366F1;
    text-decoration: none;
    font-weight: 600;
}

.auth-helper-text a:hover {
    text-decoration: underline;
}

.auth-back-link {
    display: inline-block;
    margin-top: 20px;
    color: #6366F1;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.auth-back-link:hover {
    text-decoration: underline;
}


/* ========================================
   Pockets Sign Button
   ======================================== */

.auth-pockets-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    background: #1a1a1a;
    color: white;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 16px;
    width: 100%;
}

.auth-pockets-btn:hover {
    background: #333;
    color: white;
    text-decoration: none;
}

.auth-pockets-btn img {
    width: 36px;
    height: auto;
}

/* ========================================
   reCAPTCHA container
   ======================================== */

.auth-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

/* ========================================
   Trial Code Description
   ======================================== */

.auth-trial-code-description {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-left: 4px solid #F59E0B;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.auth-trial-code-description p {
    margin: 0;
    color: #92400E;
    font-size: 14px;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    /* Navigation */
    .auth-nav-links {
        display: none;
    }
    
    .auth-mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .auth-nav-container {
        padding: 0 16px;
    }
    
    .auth-nav-logo img {
        height: 24px;
    }
    
    .auth-nav-actions {
        gap: 10px;
    }
    
    .auth-nav-signup {
        padding: 6px 16px;
        font-size: 14px;
    }
    
    .auth-nav-login {
        display: none;
    }

    /* Auth Section */
    .auth-section {
        padding: 40px 0 60px;
        min-height: auto;
    }
    
    .auth-container {
        padding: 0 16px;
    }

    .auth-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .auth-header {
        margin-bottom: 28px;
    }

    .auth-header h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .auth-header p {
        font-size: 14px;
    }

    /* Form Elements */
    .auth-form-group {
        margin-bottom: 18px;
    }
    
    .auth-form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .auth-form-input {
        padding: 12px 14px;
        font-size: 15px;
        border-radius: 10px;
    }

    .auth-form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .auth-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .auth-checkbox-group {
        margin-bottom: 20px;
    }
    
    .auth-checkbox-group label {
        font-size: 13px;
    }
    
    /* Buttons */
    .auth-btn-primary {
        padding: 14px 24px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    /* Divider */
    .auth-divider {
        margin: 24px 0;
    }
    
    .auth-divider span {
        font-size: 13px;
    }
    
    /* Social Buttons */
    .auth-social-btn {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .auth-social-btn img {
        width: 18px;
        height: 18px;
    }
    
    .auth-recommended-badge {
        padding: 3px 10px;
        font-size: 10px;
        top: -8px;
        right: 12px;
    }
    
    /* More Options */
    .auth-more-options-toggle {
        font-size: 13px;
        padding: 10px;
    }

    .auth-trust-indicators {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }

    .auth-register-plan-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .auth-container.register-plan-container {
        max-width: 520px;
    }
    
    .auth-plan-description {
        padding: 24px 20px;
        border-radius: 14px;
    }
    
    .auth-plan-description h2 {
        font-size: 20px;
    }
    
    .auth-plan-description p {
        font-size: 14px;
    }
    
    /* Benefits Banner */
    .auth-benefits-banner {
        padding: 14px 16px;
        margin-bottom: 24px;
        border-radius: 10px;
    }
    
    .auth-benefits-banner h3 {
        font-size: 13px;
    }
    
    .auth-benefits-list li {
        font-size: 12px;
    }
    
    /* Prompts */
    .auth-prompt {
        margin-top: 24px;
        padding-top: 24px;
        font-size: 14px;
    }
    
    /* Alerts */
    .auth-error-message,
    .auth-success-message,
    .auth-info-message,
    .auth-alert {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .auth-navbar {
        padding: 10px 0;
    }
    
    .auth-section {
        padding: 30px 0 50px;
    }

    .auth-card {
        padding: 24px 18px;
        border-radius: 16px;
        border-width: 1px;
    }

    .auth-header h1 {
        font-size: 22px;
    }
    
    .auth-header p {
        font-size: 13px;
    }
    
    .auth-form-input {
        padding: 11px 12px;
        font-size: 14px;
    }

    .auth-btn-primary {
        font-size: 15px;
        padding: 12px 20px;
    }

    .auth-social-btn {
        padding: 11px 16px;
        font-size: 13px;
    }
    
    .auth-social-btn img {
        width: 16px;
        height: 16px;
    }
    
    .auth-divider {
        margin: 20px 0;
    }
    
    .auth-divider span {
        font-size: 12px;
    }
    
    .auth-prompt {
        font-size: 13px;
    }
    
    .auth-checkbox-group label {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .auth-checkbox-group input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
    
    .auth-benefits-banner {
        padding: 12px 14px;
    }
    
    .auth-benefits-banner h3 {
        font-size: 12px;
    }
    
    .auth-benefits-list li {
        font-size: 11px;
    }
    
    .auth-plan-description {
        padding: 20px 16px;
    }
    
    .auth-plan-description h2 {
        font-size: 18px;
    }
    
    .auth-plan-perks li {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .auth-trust-indicators {
        font-size: 11px;
    }
    
    /* Web3 specific */
    .auth-web3-section img {
        max-width: 160px;
    }
    
    .auth-pockets-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .auth-pockets-btn img {
        width: 28px;
    }
}
