/* --- assets/css/register.css--- */
/* --- Design Tokens - Consistent with NaijaBased brand (login.php, index.php) --- */
:root {
    --hero-bg: #0A1628;
    --green: #008753;
    --green-dark: #006b42;
    --gold: #F59E0B;
    --primary: #008753;
    --primary-dark: #006b42;
    --primary-light: #33a873;
    --secondary: #F59E0B;
    --accent: #D2691E;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --text-dark: #2D3748;
    --text-light: #718096;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, var(--green) 0%, var(--accent) 100%);
}

/* ============================================================
   GLOBAL RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ============================================================
   SPLIT LAYOUT — matches login.php
============================================================ */
.login-split {
    display: flex;
    min-height: 100vh;
}

/* Override layout.css padding on the split main */
main.login-split {
    padding-bottom: 0;
}

/* ============================================================
   LEFT — BRAND PANEL
============================================================ */
.login-brand {
    flex: 0 0 48%;
    background: var(--hero-bg);
    background-image:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(0,135,83,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0,168,104,0.15) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.5rem;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.login-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.login-brand::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0,168,104,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.brand-inner { position: relative; z-index: 1; }

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.brand-logo img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: white;
    padding: 3px;
}
.brand-logo-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.brand-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 9999px;
    padding: 0.35rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.brand-headline {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 0.85rem;
}
.brand-headline-accent { color: var(--gold); }

.brand-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 380px;
}

.brand-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.brand-stat { display: flex; flex-direction: column; }
.brand-stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}
.brand-stat-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.brand-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.brand-tile {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: default;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.brand-tile:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.18);
}
.brand-tile-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.brand-tile-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tile--biz  .brand-tile-icon { background: rgba(0,135,83,0.5); }
.tile--jobs .brand-tile-icon { background: rgba(245,158,11,0.45); }
.tile--evts .brand-tile-icon { background: rgba(139,92,246,0.45); }
.tile--mkt  .brand-tile-icon { background: rgba(236,72,153,0.4); }
.brand-tile-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}
.brand-tile-desc {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.3;
    margin-top: 0.15rem;
}

/* ============================================================
   RIGHT — FORM PANEL
============================================================ */
.login-panel {
    flex: 1;
    background: #ffffff;
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 2.5rem;
}

.reg-form-wrap {
    width: 100%;
    max-width: 580px;
}

/* Mobile-only logo */
.mobile-brand-header {
    display: none;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.mobile-brand-header img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}
.mobile-brand-header span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green);
}

/* Form heading */
.form-heading {
    margin-bottom: 1.75rem;
}
.form-heading h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0.4rem;
}
.form-heading p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* ============================================================
   MAP SECTION (below form)
============================================================ */
.map-section-below {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.map-section-below h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Social Login Section --- */
.social-login-section {
    margin-bottom: 2rem;
}

.social-login-title {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    max-width: 200px;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-button-google {
    background: white;
    color: #757575;
    border-color: #e0e0e0;
}

.social-button-google:hover {
    background: #f8f9fa;
    color: #333;
}

.social-button-facebook {
    background: #1877F2;
    color: white;
}

.social-button-facebook:hover {
    background: #166FE5;
}

.social-button i {
    font-size: 1.1rem;
}

/* --- Divider --- */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.divider-text {
    padding: 0 1rem;
}

/* --- Map Container --- */
.map-container {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.mobile-map-container {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-info {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin-top: 1rem;
}

.map-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary);
    font-size: 1rem;
}

.map-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.location-preview {
    background: linear-gradient(135deg, rgba(0, 135, 83, 0.1) 0%, rgba(0, 191, 255, 0.1) 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid rgba(0, 135, 83, 0.2);
}

.location-preview p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.location-preview strong {
    color: var(--primary);
}

/* --- Referral Bonus Banner --- */
.referral-banner {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #856404;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.referral-banner h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.referral-banner p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --- Auth Page Styling --- */
body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #F8FAFC;
    margin: 0;
}

/* --- Form Grid - Enhanced Layout --- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 2rem;
    }
    
    .form-grid .full-width {
        grid-column: 1 / -1;
    }
}

/* --- Form Elements --- */
.register-form label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.register-form input,
.register-form select,
.register-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
    margin-bottom: 0;
    font-family: inherit;
}

.register-form textarea {
    resize: vertical;
    min-height: 100px;
}

.register-form label small {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.8rem;
}

.required { color: var(--danger); margin-left: 2px; }

.field-note {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-light);
}

.register-form input:focus,
.register-form select:focus,
.register-form textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 135, 83, 0.12);
    outline: none;
    transform: translateY(-1px);
}

/* --- Enhanced Input Wrapper with Validation --- */
.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper input {
    padding-right: 50px;
}

.validation-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.input-wrapper.valid .validation-icon,
.input-wrapper.invalid .validation-icon {
    opacity: 1;
}

.input-wrapper.valid input {
    border-color: var(--success);
}

.input-wrapper.invalid input {
    border-color: var(--danger);
}

.check-icon {
    color: var(--success);
}

.x-icon {
    color: var(--danger);
}

/* --- Password Wrapper with Toggle - FIXED POSITION --- */
.password-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.password-wrapper input {
    width: 100%;
    padding: 14px 16px !important; /* Reset the padding */
    box-sizing: border-box;
}

.toggle-password-btn {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
    width: auto;
}

.toggle-password-btn:hover {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.05);
}

.eye-icon {
    width: 18px;
    height: 18px;
}

/* Remove the old positioning styles that caused overlap */
.password-wrapper .toggle-password-btn {
    position: static;
    transform: none;
    right: auto;
    top: auto;
    height: auto;
    width: auto;
    margin-left: auto;
    margin-right: 0;
}

/* Password field container */
.password-field-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.password-field-container .password-wrapper {
    margin-bottom: 0;
}

/* --- Password Strength Indicator --- */
.password-strength {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.password-strength.weak {
    color: var(--danger);
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.2);
}

.password-strength.medium {
    color: var(--warning);
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.2);
}

.password-strength.strong {
    color: var(--success);
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.2);
}

/* --- Terms Checkbox --- */
.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem 0 1.5rem 0;
    padding: 1rem 1.25rem;
    background: rgba(0, 135, 83, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 135, 83, 0.15);
}

.terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.terms-checkbox label {
    margin: 0;
    font-weight: 500;
}

.terms-checkbox a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.terms-checkbox a:hover {
    color: var(--primary-dark);
}

/* --- Submit Button --- */
.register-form button {
    background: linear-gradient(135deg, var(--green) 0%, var(--accent) 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 135, 83, 0.3);
    width: 100%;
}

.register-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.register-form button:active {
    transform: translateY(0);
}

.register-form button.loading {
    position: relative;
    color: transparent;
}

.register-form button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* --- Messages & Errors --- */
.message-box {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.message-box.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: var(--success);
}

.error-messages {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.error-messages p {
    color: var(--danger);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.error-messages p:not(:last-child) {
    margin-bottom: 0.5rem;
}

/* --- Additional Text --- */
.reg-form-wrap > p {
    text-align: center;
    margin: 1.5rem 0 0 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.reg-form-wrap > p a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.reg-form-wrap > p a:hover {
    color: var(--primary-dark);
}

/* --- DOB Note --- */
.dob-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- reCAPTCHA Styling --- */
.g-recaptcha {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .login-brand {
        flex: 0 0 44%;
        padding: 2.5rem 2rem;
    }


    .login-panel {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .login-split {
        flex-direction: column;
    }

    .login-brand {
        display: none;
    }

    .mobile-brand-header {
        display: flex;
    }

    .login-panel {
        padding: 2rem 1.25rem;
    }

    .reg-form-wrap {
        max-width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-button {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .login-panel {
        padding: 1.5rem 1rem;
    }

    .register-form input,
    .register-form select {
        padding: 12px 14px;
    }

    .register-form button {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .terms-checkbox {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* --- Focus States for Accessibility --- */
.register-form input:focus,
.register-form select:focus,
.register-form button:focus,
.toggle-password-btn:focus,
.terms-checkbox input:focus,
.social-button:focus,
.brand-tile:focus {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

/* --- Reduced Motion Support --- */
@media (prefers-reduced-motion: reduce) {
    .register-form input,
    .register-form select,
    .register-form button,
    .toggle-password-btn,
    .social-button {
        transition: none;
        animation: none;
    }

    .register-form button:hover,
    .social-button:hover {
        transform: none;
    }

    .register-form input:focus,
    .register-form select:focus {
        transform: none;
    }
}

/* ============================================================
   2-STEP FORM — STEP INDICATOR
============================================================ */
.step-indicator {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.75rem;
}

.step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.step-dot .step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    border: 2px solid var(--border);
    background: #fff;
    color: var(--text-light);
    transition: all 0.25s ease;
}

.step-dot .step-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.25s ease;
}

.step-dot.active .step-num {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.step-dot.active .step-label { color: var(--green); }

.step-dot.done .step-num {
    background: rgba(0,135,83,0.12);
    border-color: var(--green);
    color: var(--green);
}

.step-dot.done .step-label { color: var(--green); }

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 0.5rem;
    margin-bottom: 1.1rem;
    transition: background 0.25s ease;
}

.step-line.done { background: var(--green); }

/* Step sections */
#form-step-2 { display: none; }

/* Next / Back buttons */
.btn-next {
    width: 100%;
    padding: 0.9rem;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn-next:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: border-color 0.2s, color 0.2s;
}

.btn-back:hover {
    border-color: #b0b0b0;
    color: var(--text-dark);
}

/* ============================================================
   BUSINESS REGISTRATION CTA BANNER
============================================================ */
.business-registration-cta {
    background: linear-gradient(135deg, rgba(0,135,83,0.07) 0%, rgba(245,158,11,0.07) 100%);
    border: 1px solid rgba(0,135,83,0.18);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.75rem;
}

.business-cta-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.35rem 0;
    display: flex;
    align-items: center;
}

.business-cta-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0 0 0.85rem 0;
    line-height: 1.5;
}

.btn-business {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--green);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.55rem 1.1rem;
    border-radius: 9px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn-business:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    color: #fff;
}

/* ============================================================
   USERNAME RULES INLINE HINTS
============================================================ */
.username-hint {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    margin-left: 0.25rem;
}

.username-rules {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    margin-top: 0.5rem;
}

.username-rules .rule {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 0.2rem 0.6rem;
    background: rgba(0,0,0,0.04);
    border-radius: 999px;
    border: 1px solid var(--border);
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.username-rules .rule.valid {
    color: var(--success);
    background: rgba(40,167,69,0.08);
    border-color: rgba(40,167,69,0.25);
}

.username-rules .rule.invalid {
    color: var(--danger);
    background: rgba(220,53,69,0.08);
    border-color: rgba(220,53,69,0.25);
}

/* ============================================================
   SOCIAL REGISTRATION NOTICE
============================================================ */
.social-registration-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(0,135,83,0.07);
    border: 1px solid rgba(0,135,83,0.2);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.social-registration-notice svg {
    color: var(--green);
    margin-top: 1px;
}

.social-registration-notice p {
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.55;
}

/* ============================================================
   BUSINESS MOBILE LINK
============================================================ */
.business-link-mobile {
    font-size: 0.88rem;
    color: var(--text-light);
}

.business-link-mobile a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.business-link-mobile a:hover {
    color: var(--primary-dark);
}