/* Premium Claude-Inspired Warm Pastel Design System */

:root {
  --bg-primary: #faf8f5; /* Warm Claude cream */
  --bg-secondary: rgba(243, 239, 230, 0.8); /* Warm beige frosted panels */
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-solid-white: #ffffff;
  
  --border-color: rgba(217, 107, 67, 0.12); /* Soft orange-tinted border */
  --border-focus: #e05e3c; /* Terracotta orange */
  
  --text-primary: #191919; /* Warm dark charcoal */
  --text-secondary: #6b6058; /* Sand-grey brown */
  --text-muted: #8f837a; /* Soft warm sand */
  
  --accent-blue: #e05e3c; /* Terracotta Orange */
  --accent-blue-hover: #c64d2d;
  --accent-blue-light: #fdf5f2; /* Soft orange/peach pastel tint */
  --accent-gold: #d97706; /* Amber gold */
  
  --font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(217, 107, 67, 0.03);
  --shadow-md: 0 10px 30px rgba(217, 107, 67, 0.05);
  --shadow-lg: 0 20px 50px rgba(217, 107, 67, 0.08);
  --shadow-focus: 0 0 0 4px rgba(224, 94, 60, 0.15);
  
  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Background glows for a touch of depth */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224, 94, 60, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Navbar with glassmorphism */
.navbar {
  background-color: rgba(250, 248, 245, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 52px;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: 'Outfit', var(--font-family);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.2px;
  color: var(--text-primary);
}

.pro-tag-text {
  background-color: var(--accent-blue);
  border-radius: 4px;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 4px;
  margin-left: 6px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-link {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

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

/* Sleek Buttons */
.btn {
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(224, 94, 60, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent-blue-hover);
  transform: translateY(-0.5px);
}

.btn-secondary {
  background-color: var(--bg-solid-white);
  border-color: var(--border-color);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: #faf9f6;
  border-color: rgba(224, 94, 60, 0.25);
}

.btn-full {
  width: 100%;
  padding: 10px;
  font-size: 14px;
}

.btn-hero {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* Main Content Wrapper */
.main-content {
  flex: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 24px 40px 24px;
  display: flex;
  flex-direction: column;
}

/* Landing Page Section */
.landing-section {
  width: 100%;
  animation: fadeIn var(--transition-normal);
}

/* Hero Section */
.hero-container {
  text-align: center;
  max-width: 750px;
  margin: 20px auto 48px auto;
}

.hero-badge {
  background: var(--accent-blue-light);
  border: 1px solid rgba(224, 94, 60, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-blue);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

.badge-text {
  color: var(--accent-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Outfit', var(--font-family);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.gradient-text {
  background: linear-gradient(135deg, #e05e3c 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Simulated Window Mockup (Warm Claude Style) */
.window-wrapper {
  max-width: 800px;
  margin: 0 auto 80px auto;
  perspective: 1000px;
}

.mac-window {
  background-color: #f3efe6;
  border: 1px solid rgba(224, 94, 60, 0.12);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal);
}

.mac-window:hover {
  transform: translateY(-2px);
}

.window-titlebar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  background-color: #ebe6db;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.window-title {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.window-content {
  background-color: #ffffff;
  padding: 0;
  position: relative;
  height: 380px;
}

/* Mock Desktop Environment */
.mock-desktop {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #ffffff 0%, #f6f2ea 100%);
  position: relative;
  overflow: hidden;
  cursor: crosshair;
  user-select: none;
}

.demo-tip {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-solid-white);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  pointer-events: none;
  z-index: 15;
  user-select: none;
}

.mock-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 20px 20px;
  background-image: 
    linear-gradient(to right, rgba(224, 94, 60, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(224, 94, 60, 0.015) 1px, transparent 1px);
}

/* Mock Code Editor inside Simulator */
.mock-code-editor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 220px;
  background-color: #faf9f6;
  border: 1px solid rgba(224, 94, 60, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  z-index: 10;
}

.editor-header {
  height: 32px;
  background-color: #f1ede4;
  border-bottom: 1px solid rgba(224, 94, 60, 0.05);
  display: flex;
  padding-left: 12px;
  align-items: flex-end;
}

.editor-header .tab {
  height: 24px;
  background-color: transparent;
  padding: 0 16px;
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  border-radius: 4px 4px 0 0;
  border: 1px solid transparent;
  border-bottom: none;
}

.editor-header .tab.active {
  background-color: #faf9f6;
  border-color: rgba(224, 94, 60, 0.05);
  color: var(--text-primary);
  font-weight: 500;
}

.editor-body {
  flex-grow: 1;
  display: flex;
  padding: 12px;
  font-size: 12px;
  line-height: 1.6;
}

.line-nums {
  color: rgba(107, 96, 88, 0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 12px;
  border-right: 1px solid rgba(224, 94, 60, 0.04);
  user-select: none;
}

.code-lines {
  padding-left: 12px;
  overflow: hidden;
  width: 100%;
}

/* Syntax Highlighting (Soft Pastel theme) */
.keyword { color: #d85734; font-weight: 600; }
.variable { color: #535a60; }
.class { color: #43719c; }
.comment { color: #9c9288; font-style: italic; }
.method { color: #cc703d; }
.property { color: #96691e; }
.string { color: #597d30; }
.literal { color: #b56c28; }

/* Simulator interactive tools */
.sim-selection {
  position: absolute;
  border: 1px dashed var(--accent-blue);
  background-color: rgba(224, 94, 60, 0.08);
  border-radius: 2px;
  z-index: 20;
  display: none;
  box-shadow: 0 0 0 9999px rgba(25, 25, 25, 0.1); /* Dims rest of screen overlay */
}

.selection-dims {
  position: absolute;
  bottom: -22px;
  right: 0;
  background-color: var(--text-primary);
  color: #ffffff;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-family);
  font-weight: 600;
  white-space: nowrap;
}

.selection-handle {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--accent-blue);
  border: 1px solid #ffffff;
}

.top-left { top: -3px; left: -3px; }
.top-right { top: -3px; right: -3px; }
.bottom-left { bottom: -3px; left: -3px; }
.bottom-right { bottom: -3px; right: -3px; }

.sim-cursor {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 30;
  pointer-events: none;
  display: none;
}

.crosshair-x, .crosshair-y {
  position: absolute;
  background-color: var(--text-primary);
  opacity: 0.8;
}

.crosshair-x {
  top: 11px;
  left: 0;
  width: 24px;
  height: 2px;
}

.crosshair-y {
  top: 0;
  left: 11px;
  width: 2px;
  height: 24px;
}

.sim-ocr-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 25;
  backdrop-filter: blur(10px);
}

.sim-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid var(--border-color);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

/* Simulator notification toast */
.sim-toast {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 250px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 12px;
  display: flex;
  gap: 10px;
  z-index: 40;
  transform: translateX(280px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sim-toast.show {
  transform: translateX(0);
}

.sim-toast-icon {
  background-color: var(--accent-blue);
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sim-toast-icon svg {
  width: 16px;
  height: 16px;
}

.sim-toast-content h4 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.sim-toast-content p {
  font-size: 10px;
  color: var(--text-secondary);
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

/* Features Section */
.features-section {
  max-width: 950px;
  margin: 0 auto 90px auto;
}

.section-title {
  font-family: 'Outfit', var(--font-family);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.8px;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 94, 60, 0.25);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: var(--accent-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.font-icon {
  font-size: 20px;
  background: transparent;
  justify-content: flex-start;
  width: auto;
  height: auto;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Pricing Section */
.pricing-section {
  max-width: 950px;
  margin: 0 auto 60px auto;
}

.pricing-card-wrapper {
  max-width: 480px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--bg-solid-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-2px);
}

.pricing-badge {
  position: absolute;
  top: 14px;
  right: -36px;
  background-color: var(--accent-blue);
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
}

.pricing-card h2 {
  font-family: 'Outfit', var(--font-family);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  border-bottom: none;
  padding-bottom: 0;
}

.price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.price-original {
  font-size: 18px;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.price-current {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
}

.price-period {
  font-size: 12px;
  color: var(--text-secondary);
}

.pricing-desc {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding-left: 8px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.check-icon {
  width: 14px;
  height: 14px;
  color: #e05e3c; /* Burnt Orange check */
  flex-shrink: 0;
}

.btn-pricing {
  font-size: 14px;
  padding: 10px;
  border-radius: 8px;
}

/* Dashboard Panel */
.dashboard-section {
  width: 100%;
  animation: fadeIn var(--transition-normal);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
  margin-top: 20px;
}

.card {
  background-color: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.card h2 {
  font-family: 'Outfit', var(--font-family);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  color: var(--text-primary);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.card-header h2 {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

/* Badges */
.badge {
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.badge-free {
  background-color: #ebe6db;
  color: var(--text-secondary);
  border: none;
}

.badge-pro {
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
  border: 1px solid rgba(224, 94, 60, 0.15);
}

/* Profile Details */
.profile-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(224, 94, 60, 0.05);
}

.detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-row .label {
  color: var(--text-secondary);
  font-size: 13px;
}

.detail-row .value {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-primary);
}

.card-divider {
  border: 0;
  height: 1px;
  background-color: var(--border-color);
  margin: 24px 0;
}

.subscription-control h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Steps List styling */
.instructions-card > p {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step-list li {
  display: flex;
  gap: 14px;
}

.step-num {
  align-self: flex-start;
  background: var(--bg-solid-white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  min-width: 24px;
  height: 24px;
  box-shadow: var(--shadow-sm);
}

.step-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  flex: 1;
}

.step-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Auth Page Section */
.auth-section {
  width: 100%;
  max-width: 420px;
  margin: 40px auto;
  animation: fadeIn var(--transition-normal);
}

.auth-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
}

/* Toast Notifications */
.toast {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Footer styling */
.footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 32px 24px;
  margin-top: auto;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-logo {
  font-family: 'Outfit', var(--font-family);
  font-weight: 700;
  color: var(--text-primary);
}

/* Utility classes */
.hidden {
  display: none !important;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(224, 94, 60, 0.4); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(224, 94, 60, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(224, 94, 60, 0); }
}

/* Responsive design adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none; /* Hide features/pricing links on mobile */
  }
  .mac-window {
    transform: scale(0.9);
  }
}

/* -------------------------------------------------------------
 * Custom Better Auth Forms Layout & Components
 * ------------------------------------------------------------- */
.auth-card {
  padding: 32px 28px !important;
}

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

.auth-lock-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--accent-blue-light);
  border-radius: 50%;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.auth-lock-icon svg {
  width: 20px;
  height: 20px;
}

.auth-header h2 {
  font-family: 'Outfit', var(--font-family);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.auth-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

.auth-tabs {
  display: flex;
  background-color: var(--bg-secondary);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

.auth-tab-btn {
  flex: 1;
  background: none;
  border: none;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.auth-tab-btn:hover {
  color: var(--text-primary);
}

.auth-tab-btn.active {
  background-color: var(--bg-solid-white);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.auth-form-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: left;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--text-primary);
  background-color: var(--bg-solid-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  outline: none;
  transition: all var(--transition-fast);
}

.input-wrapper input:focus {
  border-color: var(--border-focus);
  box-shadow: var(--shadow-focus);
}

.password-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.password-toggle:hover {
  color: var(--text-secondary);
}

.password-toggle svg {
  width: 18px;
  height: 18px;
}

.auth-error-banner {
  background-color: #fdf2f2;
  border: 1px solid #f8b4b4;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #c81e1e;
  text-align: left;
  font-weight: 500;
  line-height: 1.4;
  animation: fadeIn var(--transition-fast);
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
}

#auth-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
}
