.vx-header {
    background: #ffffff;
    border-bottom: 1px solid #e6e8ec;
}

.vx-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 32px;
}

.vx-logo-img {
    height: 50px;
    width: 100px;
    display: block;
}
.vx-page {
    min-height: 100vh;
    background: #f5f7fb;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

/* ---- Header Styles are now in Header.css ---- */

.vx-logo-img--boxed {
    height: 70px;
    width: 150px;
}

/* ---- Main / Card ---- */
.vx-main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 24px;
}

.vx-card {
    display: flex;
    width: 100%;
    max-width: 800px;
    min-height: 450px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(20, 40, 90, 0.12);
}

/* ---- Left panel ---- */
.vx-left {
    flex: 0 0 44%;
    background: linear-gradient(135deg, #4a8cf7 0%, var(--primary-color, #2f7cf6) 45%, var(--accent-color, #1554c9) 100%);
    padding: 80px 36px 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #ffffff;
}

.vx-left-logo-box {
    background: #ffffff;
    border-radius: 12px;
    width: 130px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.vx-left-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px 0;
    max-width: 279px;
}

.vx-left-text {
    font-size: 13.5px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    max-width: 279px;
}

/* ---- Right panel ---- */
.vx-right {
    flex: 1;
    padding: 80px 40px 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.vx-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px 0;
}

.vx-title-sec {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px 0;
}

.vx-subtitle {
    font-size: 13.5px;
    color: #6b7280;
    margin: 0 0 86px 0;
}

.vx-subtitle-sec {
    font-size: 13.5px;
    color: #6b7280;
    margin: 0 0 26px 0;
}

/* ---- Role selection ---- */
.vx-role-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 26px;
}

.vx-role-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 12px;
    border-radius: 12px;
    border: 1.5px solid #e2e5eb;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
    color: #374151;
}

.vx-role-card:hover {
    border-color: #b9cef9;
}

.vx-role-card--active {
    border-color: var(--primary-color, #2f7cf6);
    background: #f2f7ff;
    color: var(--primary-color, #2f7cf6);
}

.vx-role-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vx-role-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.vx-role-label {
    font-size: 13.5px;
    font-weight: 600;
}

/* ---- Form fields ---- */
.vx-field {
    margin-bottom: 18px;
}

.vx-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
}

.vx-input {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    border-radius: 8px;
    border: 1px solid #d8dce3;
    font-size: 13.5px;
    color: #111827;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.vx-input:focus {
    border-color: var(--primary-color, #2f7cf6);
    box-shadow: 0 0 0 3px rgba(47, 124, 246, 0.12);
}

.vx-input::placeholder {
    color: #9aa1ac;
}

/* ---- Row utilities ---- */
.vx-row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.vx-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4b5563;
    cursor: pointer;
    user-select: none;
}

.vx-checkbox-box {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid #c6cbd3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vx-checkbox-box--checked {
    background: var(--primary-color, #2f7cf6);
    border-color: var(--primary-color, #2f7cf6);
}

.vx-link {
    color: var(--primary-color, #2f7cf6);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.vx-link:hover {
    text-decoration: underline;
}

.vx-footer-text {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    margin: 18px 0 0 0;
}

/* ---- Responsive ---- */
@media (max-width: 720px) {
    .vx-card {
        flex-direction: column;
    }

    .vx-left {
        flex: none;
        padding: 32px 28px;
    }

    .vx-right {
        padding: 32px 28px;
    }

    .vx-role-grid {
        grid-template-columns: 1fr 1fr;
    }
}.vr-page {
    min-height: 100vh;
    background: #f5f7fb;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---- Header Styles are now in Header.css ---- */

.vr-main {
    display: flex;
    justify-content: center;
    padding: 56px 24px;
}

/* ================= Steps 1 & 2 (single card) ================= */
.vr-card {
    width: 100%;
    max-width: 680px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(20, 40, 90, 0.1);
    overflow: hidden;
}

.vr-card-header {
    padding: 26px 32px 22px 32px;
    border-bottom: 1px solid #eceef2;
}

.vr-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px 0;
}

.vr-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.vr-stepper-row {
    padding: 24px 32px 4px 32px;
}

.vr-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.vr-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e8ee;
    color: #8b93a1;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vr-step-circle--active {
    background: var(--primary-color, #2f7cf6);
    color: #ffffff;
}

.vr-step-line {
    width: 90px;
    height: 2px;
    background: #e5e8ee;
    margin: 0 6px;
}

.vr-step-line--active {
    background: var(--primary-color, #2f7cf6);
}

.vr-card-body {
    padding: 26px 32px 30px 32px;
}

.vr-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.vr-section-text {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 22px 0;
}

.vr-email-highlight {
    color: var(--primary-color, #2f7cf6);
    text-decoration: underline;
    font-weight: 600;
}

.vr-card-footer {
    display: flex;
    justify-content: flex-end;
    padding: 20px 32px;
    border-top: 1px solid #eceef2;
}

/* ---- Fields (shared) ---- */
.vr-field {
    margin-bottom: 18px;
}

.vr-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
}

.vr-label--plain {
    font-weight: 500;
    color: #4b5563;
}

.vr-input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #d8dce3;
    font-size: 13.5px;
    color: #111827;
    outline: none;
    background: #ffffff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.vr-input:focus {
    border-color: var(--primary-color, #2f7cf6);
    box-shadow: 0 0 0 3px rgba(47, 124, 246, 0.12);
}

.vr-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 32px;
}

.vr-hint {
    font-size: 12.5px;
    color: #6b7280;
    margin: 8px 0 0 0;
}

.vr-link {
    color: var(--primary-color, #2f7cf6);
    font-weight: 600;
    text-decoration: none;
}

.vr-link:hover {
    text-decoration: underline;
}

.vr-link--static {
    cursor: default;
}

/* ---- OTP ---- */
.vr-otp-row {
    display: flex;
    gap: 10px;
    margin-bottom: 6px;
}

.vr-otp-box {
    width: 46px;
    height: 52px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid #d8dce3;
    outline: none;
    color: #111827;
}

.vr-otp-box:focus {
    border-color: var(--primary-color, #2f7cf6);
    box-shadow: 0 0 0 3px rgba(47, 124, 246, 0.12);
}

/* ---- Checkbox ---- */
.vr-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4b5563;
    cursor: pointer;
    user-select: none;
}

.vr-checkbox-box {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid #c6cbd3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vr-checkbox-box--checked {
    background: var(--primary-color, #2f7cf6);
    border-color: var(--primary-color, #2f7cf6);
}

/* ================= Step 3 (multi-panel) ================= */
.vr-step3 {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vr-step3-header {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(20, 40, 90, 0.06);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vr-step-indicator {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color, #2f7cf6);
}

.vr-panel {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(20, 40, 90, 0.06);
    padding: 26px 28px;
}

.vr-panel-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid #eceef2;
}

.vr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.vr-field--full {
    grid-column: 1 / -1;
}

.vr-panel--footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* ---- Responsive ---- */
@media (max-width: 720px) {
    .vr-grid {
        grid-template-columns: 1fr;
    }

    .vr-otp-box {
        width: 38px;
        height: 46px;
    }

    .vr-step-line {
        width: 40px;
    }

    .vr-panel--footer {
        flex-direction: column;
        align-items: flex-start;
    }
}/* Custom Styling System for Vosox */
:root {
  --bg-color: #0b0f19;
  --bg-grid: rgba(99, 102, 241, 0.03);
  --surface-color: rgba(22, 28, 45, 0.7);
  --surface-hover: rgba(30, 41, 59, 0.8);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(99, 102, 241, 0.35);
  
  --primary-color: #6366f1; /* Indigo */
  --primary-glow: rgba(99, 102, 241, 0.15);
  --accent-color: #a855f7; /* Purple */
  --accent-glow: rgba(168, 85, 247, 0.15);
  
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;

  --text-color: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #64748b;
  
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-blur: blur(12px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-sans);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background Grid Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(var(--bg-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  pointer-events: none;
}

/* Background Radial Glows */
body::after {
  content: '';
  position: fixed;
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--surface-color);
  border-radius: 4px;
  border: 1px solid var(--border-color);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Dashboard Shell Layout */
.app-container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--surface-color);
  backdrop-filter: var(--glass-blur);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 24px;
  z-index: 10;
  transition: var(--transition-smooth);
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow-y: auto;
}

.main-content.no-padding {
  padding: 0;
}

/* Navbar / Header */
.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.nav-item:hover, .nav-item.active {
  color: var(--text-color);
  background: var(--surface-hover);
  border-color: var(--border-hover);
  box-shadow: 0 0 15px var(--primary-glow);
}

.nav-item.active {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.15) 0%, transparent 100%);
  border-left: 3px solid var(--primary-color);
}

/* Card glass styling */
.glass-card {
  background: var(--surface-color);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 15px var(--primary-glow);
  transform: translateY(-2px);
}

/* Button override enhancements */
.vosox-button:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 20px var(--primary-glow), 0 4px 14px 0 rgba(99, 102, 241, 0.6);
  transform: translateY(-1px);
}
.vosox-button:active {
  transform: translateY(1px);
}

/* Grid & Metrics */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.metric-card {
  text-align: left;
}

.metric-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
}

.metric-trend {
  font-size: 0.8rem;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.trend-up { color: var(--success-color); }
.trend-down { color: var(--danger-color); }

/* Table styles */
.table-container {
  overflow-x: auto;
  margin-top: 20px;
}

.premium-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.premium-table th {
  padding: 14px 16px;
  border-bottom: 2px solid var(--border-color);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.premium-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: 0.95rem;
}

.premium-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-success { background: rgba(16, 185, 129, 0.15); color: var(--success-color); border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-warning { background: rgba(245, 158, 11, 0.15); color: var(--warning-color); border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-danger { background: rgba(239, 68, 68, 0.15); color: var(--danger-color); border: 1px solid rgba(239, 68, 68, 0.3); }
.badge-info { background: rgba(99, 102, 241, 0.15); color: var(--primary-color); border: 1px solid rgba(99, 102, 241, 0.3); }

/* Login Page styles */
.login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

.login-card {
  width: 420px;
  max-width: 90%;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-color);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-glow);
}

.role-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.role-btn {
  flex: 1;
  padding: 12px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.role-btn.active {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
  border-color: var(--primary-color);
  color: var(--text-color);
  box-shadow: 0 0 12px var(--primary-glow);
}
