/**
 * Holographic Theme - Futuristic, Dark, Neon Glows
 * Inspiration: Blade Runner, Cyberpunk 2077, holographic projections
 */

:root[data-theme="holographic"] {
  /* Dark Background (solid, no transparency) */
  --color-background: #0D1117;
  --color-surface: #161B22;
  --color-surface-hover: #1F2937;
  
  /* Neon Text (Bright projected light) */
  --color-text-primary: #00E5FF;
  --color-text-secondary: #66D9EF;
  --color-text-tertiary: #99E0F0;
  --color-text-inverse: #0D1117;
  
  /* Borders (neon lines) */
  --color-border: rgba(0, 229, 255, 0.25);
  --color-border-hover: rgba(0, 229, 255, 0.60);
  
  /* Neon Colors (Bright) */
  --color-primary: #00E5FF;
  --color-primary-hover: #33EEFF;
  --color-primary-light: rgba(0, 229, 255, 0.15);
  --color-secondary: #E366FF;
  --color-success: #00FF99;
  --color-warning: #FFE600;
  --color-danger: #FF3366;
  --color-info: #00BBFF;
  --color-accent: #CC66FF;
  --color-accent-hover: #DD88FF;
  
  /* Text Glow (subtle projected light effect) */
  --glow-text: 0 0 3px rgba(0, 229, 255, 0.6);
  --glow-cyan: 0 0 6px rgba(0, 229, 255, 0.4);
  --glow-magenta: 0 0 6px rgba(227, 102, 255, 0.4);
  --glow-green: 0 0 6px rgba(0, 255, 153, 0.4);
  
  /* Shadows (minimal) */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.7);
  --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.8);
  
  /* Typography */
  --font-primary: 'Rajdhani', 'Orbitron', 'Exo 2', sans-serif;
  --font-mono: 'Fira Code', 'JetBrains Mono', monospace;
  --text-xs: clamp(0.75rem, 1vw, 0.875rem);
  --text-sm: clamp(0.875rem, 1.2vw, 1rem);
  --text-base: clamp(1rem, 1.4vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.8vw, 1.25rem);
  --text-xl: clamp(1.25rem, 2vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 2.4vw, 2rem);
  --text-3xl: clamp(2rem, 3vw, 3rem);
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --leading-tight: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;
  --text-shadow: var(--glow-text);
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  
  /* Border Radius (minimal, sharp) */
  --radius-sm: 0;
  --radius-md: 2px;
  --radius-lg: 4px;
  --radius-xl: 6px;
  --radius-full: 9999px;
  
  /* Component Heights */
  --height-control-sm: 2rem;
  --height-control-md: 2.5rem;
  --height-control-lg: 3rem;
  
  /* Animations (smooth, futuristic) */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --duration-fast: 120ms;
  --duration-normal: 200ms;
  --duration-slow: 300ms;
  --duration-page: 400ms;
  
  /* App Frame Regions (solid backgrounds) */
  --bg-primary: #0D1117;
  --bg-header: #0D1117;
  --bg-sidebar: #161B22;
  --bg-footer: #0D1117;
  --bg-content: #0D1117;
  --bg-surface: #161B22;
  --bg-surface-hover: #1F2937;
  --text-primary: #00E5FF;
  --text-header: #00E5FF;
  --text-sidebar: #00E5FF;
  --text-footer: #00E5FF;

  /* Reusable floating utility tokens */
  --floating-bg: rgba(13, 17, 23, 0.92);
  --floating-border: rgba(0, 229, 255, 0.45);
  --floating-border-width: 1px;
  --floating-text: #00E5FF;
  --floating-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
  --floating-backdrop-filter: blur(12px);
  --floating-z: 100;
}

[data-theme="holographic"] body {
  background-color: var(--color-background);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

/* Override Bootstrap utility classes */
[data-theme="holographic"] .text-muted {
  color: var(--color-text-secondary) !important;
  opacity: 1 !important;
}

[data-theme="holographic"] .text-primary {
  color: var(--color-text-primary) !important;
}

[data-theme="holographic"] .text-secondary {
  color: var(--color-text-secondary) !important;
}

[data-theme="holographic"] .text-success {
  color: var(--color-success) !important;
}

[data-theme="holographic"] .text-warning {
  color: var(--color-warning) !important;
}

[data-theme="holographic"] .text-danger {
  color: var(--color-danger) !important;
}

[data-theme="holographic"] .text-info {
  color: var(--color-info) !important;
}

/* All text elements use theme colors */
[data-theme="holographic"] p,
[data-theme="holographic"] h1,
[data-theme="holographic"] h2,
[data-theme="holographic"] h3,
[data-theme="holographic"] h4,
[data-theme="holographic"] h5,
[data-theme="holographic"] h6,
[data-theme="holographic"] label,
[data-theme="holographic"] span,
[data-theme="holographic"] div:not(.alert),
[data-theme="holographic"] td,
[data-theme="holographic"] th,
[data-theme="holographic"] li,
[data-theme="holographic"] a {
  color: var(--color-text-primary) !important;
}

/* Clean projected neon text - no blur */
[data-theme="holographic"] * {
  text-shadow: none;
}

[data-theme="holographic"] {
  color: var(--color-text-primary);
}

/* Buttons */
[data-theme="holographic"] .btn {
  border: 1px solid var(--color-border);
  background-color: transparent;
  box-shadow: none;
  border-radius: var(--radius-md);
}

[data-theme="holographic"] .btn:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  text-shadow: var(--glow-text);
  transition: 
    border-color var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out),
    text-shadow var(--duration-normal) var(--ease-out);
}

[data-theme="holographic"] .btn:active {
  transform: scale(0.97);
  box-shadow: 
    0 0 30px rgba(0, 240, 255, 0.8),
    0 0 60px rgba(0, 240, 255, 0.6),
    inset 0 0 20px rgba(0, 240, 255, 0.3);
  transition: 
    transform var(--duration-fast) var(--ease-in),
    box-shadow var(--duration-fast) var(--ease-in);
}

[data-theme="holographic"] .btn:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
  text-shadow: var(--glow-text);
}

[data-theme="holographic"] .btn-primary {
  background-color: rgba(0, 240, 255, 0.1) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
}

[data-theme="holographic"] .btn-primary:hover {
  background-color: rgba(0, 240, 255, 0.2) !important;
  color: var(--color-primary) !important;
}

/* Inputs */
[data-theme="holographic"] .form-control,
[data-theme="holographic"] .form-select,
[data-theme="holographic"] input[type="text"],
[data-theme="holographic"] input[type="search"],
[data-theme="holographic"] input[type="number"],
[data-theme="holographic"] input[type="email"],
[data-theme="holographic"] input[type="password"],
[data-theme="holographic"] input:not([type]),
[data-theme="holographic"] textarea {
  border: 1px solid var(--color-border);
  background-color: rgba(20, 30, 48, 0.4);
  box-shadow: none;
  color: var(--color-text-primary);
  border-radius: var(--radius-md);
  height: var(--height-control-md);
  padding: 0.375rem 0.75rem;
}

[data-theme="holographic"] textarea {
  height: auto;
}

[data-theme="holographic"] .form-control:focus,
[data-theme="holographic"] .form-select:focus,
[data-theme="holographic"] input[type="text"]:focus,
[data-theme="holographic"] input[type="search"]:focus,
[data-theme="holographic"] input[type="number"]:focus,
[data-theme="holographic"] input[type="email"]:focus,
[data-theme="holographic"] input[type="password"]:focus,
[data-theme="holographic"] input:not([type]):focus,
[data-theme="holographic"] textarea:focus {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  background-color: rgba(20, 30, 48, 0.6);
}

/* Checkboxes */
[data-theme="holographic"] input[type="checkbox"] {
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--color-border);
  background-color: rgba(20, 30, 48, 0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

[data-theme="holographic"] input[type="checkbox"]:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--glow-cyan);
}

[data-theme="holographic"] input[type="checkbox"]:checked::after {
  content: '✓';
  display: block;
  text-align: center;
  color: var(--color-text-inverse);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* Cards */
[data-theme="holographic"] .card {
  border: 1px solid var(--color-border);
  box-shadow: none;
  background-color: var(--color-surface);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
}

[data-theme="holographic"] .card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
}

/* Panels (semi-transparent) */
[data-theme="holographic"] .panel,
[data-theme="holographic"] .modal {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

/* Page Transitions (glowing slide with blur) */
[data-theme="holographic"] .page-enter-active {
  animation: holoSlideInRight var(--duration-page) var(--ease-out);
}

[data-theme="holographic"] .page-leave-active {
  animation: holoSlideOutLeft var(--duration-page) var(--ease-in);
}

@keyframes holoSlideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
    filter: blur(10px);
  }
  to {
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes holoSlideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
    filter: blur(10px);
  }
}

/* Pulsing Animation for alerts */
@keyframes holoPulse {
  0%, 100% {
    box-shadow: var(--shadow-md);
  }
  50% {
    box-shadow: var(--shadow-xl);
  }
}

[data-theme="holographic"] .alert {
  animation: holoPulse 2s var(--ease-in-out) infinite;
}

/* Auth UI (Logon/Landing) */
[data-theme="holographic"] .auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--bg-content);
  padding: var(--space-4);
}

[data-theme="holographic"] .auth-container {
  max-width: 420px;
  width: 100%;
  background: var(--bg-primary);
  border-radius: var(--radius-xl, 0.75rem);
  box-shadow: var(--shadow-xl, 0 20px 25px -5px rgba(0, 0, 0, 0.1));
  padding: var(--space-8, 2rem);
  border: 1px solid var(--color-border, #dee2e6);
}

[data-theme="holographic"] .auth-logo {
  text-align: center;
  margin-bottom: var(--space-6, 1.5rem);
}

[data-theme="holographic"] .auth-logo h1 {
  color: var(--text-primary, #1f1f1f);
  font-size: var(--text-3xl, 2rem);
  font-weight: var(--font-bold, 700);
  margin-bottom: var(--space-2, 0.5rem);
}

[data-theme="holographic"] .auth-logo p {
  color: var(--text-secondary, #717888);
  font-size: var(--text-base, 1rem);
}

[data-theme="holographic"] .auth-context-banner {
  display: flex;
  align-items: center;
  gap: var(--space-2, 0.5rem);
  padding: var(--space-3, 0.75rem);
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md, 0.375rem);
  margin-bottom: var(--space-4, 1rem);
  font-size: var(--text-sm, 0.875rem);
  color: var(--text-secondary, #717888);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

[data-theme="holographic"] .account-history {
  margin-bottom: var(--space-4, 1rem);
}

[data-theme="holographic"] .account-history-title {
  color: var(--text-secondary, #717888);
  font-size: var(--text-sm, 0.875rem);
  font-weight: var(--font-semibold, 600);
  margin-bottom: var(--space-3, 0.75rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[data-theme="holographic"] .account-history-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2, 0.5rem);
  margin-bottom: var(--space-3, 0.75rem);
}

[data-theme="holographic"] .account-history-item {
  display: flex;
  align-items: center;
  gap: var(--space-3, 0.75rem);
  padding: var(--space-3, 0.75rem);
  background: var(--bg-surface, #f8f9fa);
  border: 1px solid var(--color-border, #dee2e6);
  border-radius: var(--radius-lg, 0.5rem);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
  width: 100%;
  text-align: left;
  position: relative;
}

[data-theme="holographic"] .account-history-item:hover {
  background: var(--bg-surface-hover, #f1f3f5);
  border-color: var(--color-primary, #2b3492);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0, 0, 0, 0.05));
}

[data-theme="holographic"] .account-avatar {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light, #e8eafc);
  color: var(--color-primary, #2b3492);
  border-radius: 50%;
  font-size: var(--text-xl, 1.25rem);
  flex-shrink: 0;
}

[data-theme="holographic"] .account-info {
  flex: 1;
  min-width: 0;
}

[data-theme="holographic"] .account-name {
  color: var(--text-primary, #1f1f1f);
  font-size: var(--text-base, 1rem);
  font-weight: var(--font-semibold, 600);
  margin-bottom: var(--space-1, 0.25rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="holographic"] .account-meta {
  color: var(--text-secondary, #717888);
  font-size: var(--text-sm, 0.875rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="holographic"] .account-time {
  color: var(--text-tertiary, #93908f);
  font-size: var(--text-xs, 0.75rem);
  margin-top: var(--space-1, 0.25rem);
}

[data-theme="holographic"] .account-remove {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text-tertiary, #93908f);
  font-size: var(--text-lg, 1.125rem);
  cursor: pointer;
  border-radius: var(--radius-sm, 0.25rem);
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
  flex-shrink: 0;
}

[data-theme="holographic"] .account-remove:hover {
  background: var(--color-danger, #ef4444);
  color: white;
}

[data-theme="holographic"] .account-history-divider {
  display: flex;
  align-items: center;
  gap: var(--space-3, 0.75rem);
  margin: var(--space-4, 1rem) 0;
  color: var(--text-tertiary, #93908f);
  font-size: var(--text-sm, 0.875rem);
}

[data-theme="holographic"] .account-history-divider::before,
[data-theme="holographic"] .account-history-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border, #dee2e6);
}

[data-theme="holographic"] .auth-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-3, 0.75rem);
}

[data-theme="holographic"] .auth-method {
  border: 1px solid var(--color-border, #dee2e6);
  border-radius: var(--radius-lg, 0.5rem);
  overflow: hidden;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

[data-theme="holographic"] .auth-method.last-used {
  border-color: var(--color-primary, #2b3492);
  box-shadow: 0 0 0 3px var(--color-primary-light, #e8eafc);
}

[data-theme="holographic"] .auth-method-sso,
[data-theme="holographic"] .auth-method-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-3, 0.75rem);
  padding: var(--space-4, 1rem);
  background: var(--bg-surface, #f8f9fa);
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
  text-align: left;
}

[data-theme="holographic"] .auth-method-sso:hover,
[data-theme="holographic"] .auth-method-toggle:hover {
  background: var(--bg-surface-hover, #f1f3f5);
  transform: translateY(-1px);
}

[data-theme="holographic"] .auth-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light, #e8eafc);
  color: var(--color-primary, #2b3492);
  border-radius: var(--radius-lg, 0.5rem);
  font-size: var(--text-xl, 1.25rem);
  flex-shrink: 0;
}

[data-theme="holographic"] .auth-text {
  flex: 1;
}

[data-theme="holographic"] .auth-text h3 {
  color: var(--text-primary, #1f1f1f);
  font-size: var(--text-base, 1rem);
  font-weight: var(--font-semibold, 600);
  margin: 0 0 var(--space-1, 0.25rem) 0;
}

[data-theme="holographic"] .auth-text p {
  color: var(--text-secondary, #717888);
  font-size: var(--text-sm, 0.875rem);
  margin: 0;
}

[data-theme="holographic"] .auth-method .badge {
  padding: var(--space-1, 0.25rem) var(--space-2, 0.5rem);
  background: var(--color-primary, #2b3492);
  color: white;
  border-radius: 9999px;
  font-size: var(--text-xs, 0.75rem);
  font-weight: var(--font-semibold, 600);
}

[data-theme="holographic"] .expand-icon {
  color: var(--text-secondary, #717888);
  transition: transform 0.2s cubic-bezier(0, 0, 0.2, 1);
}

[data-theme="holographic"] .auth-form {
  padding: var(--space-4, 1rem);
  background: var(--bg-primary, #ffffff);
  border-top: 1px solid var(--color-border, #dee2e6);
}

[data-theme="holographic"] .auth-form-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-3, 0.75rem);
}

[data-theme="holographic"] .form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2, 0.5rem);
}

[data-theme="holographic"] .form-group label {
  color: var(--text-primary, #1f1f1f);
  font-size: var(--text-sm, 0.875rem);
  font-weight: var(--font-medium, 500);
}

[data-theme="holographic"] .form-group input {
  padding: var(--space-3, 0.75rem);
  border: 1px solid var(--color-border, #dee2e6);
  border-radius: var(--radius-md, 0.375rem);
  font-size: var(--text-base, 1rem);
  background: var(--bg-surface, #f8f9fa);
  color: var(--text-primary, #1f1f1f);
  transition: border-color 0.2s cubic-bezier(0, 0, 0.2, 1);
}

[data-theme="holographic"] .form-group input:focus {
  outline: none;
  border-color: var(--color-primary, #2b3492);
  box-shadow: 0 0 0 3px var(--color-primary-light, #e8eafc);
}

[data-theme="holographic"] .form-check {
  display: flex;
  align-items: center;
  gap: var(--space-2, 0.5rem);
}

[data-theme="holographic"] .form-check input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

[data-theme="holographic"] .form-check label {
  font-size: var(--text-sm, 0.875rem);
  color: var(--text-secondary, #717888);
  cursor: pointer;
}

[data-theme="holographic"] .btn-block {
  width: 100%;
  padding: var(--space-3, 0.75rem) var(--space-4, 1rem);
  background: var(--color-primary, #2b3492);
  color: white;
  border: none;
  border-radius: var(--radius-md, 0.375rem);
  font-size: var(--text-base, 1rem);
  font-weight: var(--font-semibold, 600);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

[data-theme="holographic"] .btn-block:hover:not(:disabled) {
  background: var(--color-primary-hover, #232a78);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
}

[data-theme="holographic"] .btn-block:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

[data-theme="holographic"] .form-help {
  font-size: var(--text-xs, 0.75rem);
  color: var(--text-tertiary, #93908f);
  margin: 0;
  text-align: center;
}

[data-theme="holographic"] .auth-error {
  padding: var(--space-3, 0.75rem);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md, 0.375rem);
  color: var(--color-danger, #ef4444);
  font-size: var(--text-sm, 0.875rem);
  margin-bottom: var(--space-3, 0.75rem);
}

[data-theme="holographic"] .auth-success {
  padding: var(--space-3, 0.75rem);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-md, 0.375rem);
  color: #22c55e;
  font-size: var(--text-sm, 0.875rem);
  margin-bottom: var(--space-3, 0.75rem);
}

[data-theme="holographic"] .form-help a {
  color: var(--color-primary, #2b3492);
  text-decoration: none;
  font-weight: var(--font-medium, 500);
}

[data-theme="holographic"] .form-help a:hover {
  text-decoration: underline;
}

/* --- Credential pill-tabs (unified basic/AD form) --- */
[data-theme="holographic"] .auth-cred-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

[data-theme="holographic"] .auth-cred-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--color-border, rgba(0,229,255,0.25));
  border-radius: var(--radius-lg, 0.5rem);
  background: var(--bg-surface, #161B22);
  color: var(--color-text-secondary, #66D9EF);
  cursor: pointer;
  font-size: var(--text-sm, 0.875rem);
  font-weight: 500;
  transition: all 0.2s ease;
}

[data-theme="holographic"] .auth-cred-tab:hover {
  background: var(--bg-surface-hover, #1F2937);
  border-color: var(--color-border-hover, rgba(0,229,255,0.6));
}

[data-theme="holographic"] .auth-cred-tab.active {
  background: var(--color-primary-light, rgba(0,229,255,0.15));
  border-color: var(--color-primary, #00E5FF);
  color: var(--color-primary, #00E5FF);
  box-shadow: 0 0 8px rgba(0,229,255,0.2);
}

[data-theme="holographic"] .auth-cred-tab-icon {
  display: flex;
  align-items: center;
}

[data-theme="holographic"] .auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  color: var(--color-text-tertiary, #99E0F0);
  font-size: var(--text-sm, 0.875rem);
}

[data-theme="holographic"] .auth-divider::before,
[data-theme="holographic"] .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border, rgba(0,229,255,0.25));
}

[data-theme="holographic"] .hidden {
  display: none !important;
}

@media (max-width: 767.98px) {
  [data-theme="holographic"] .auth-container {
    padding: var(--space-6, 1.5rem);
  }

  [data-theme="holographic"] .auth-logo h1 {
    font-size: var(--text-2xl, 1.5rem);
  }
}
