:root {
  /* Colors - Premium Dark Theme */
  --bg-primary: #0f1115;
  --bg-secondary: #1a1d24;
  --bg-tertiary: #252830;

  --text-primary: #f0f2f5;
  --text-secondary: #a0a6b1;
  --text-muted: #6b7280;

  --accent-primary: #25D366;
  /* WhatsApp Green */
  --accent-hover: #1da851;
  --accent-light: rgba(37, 211, 102, 0.15);

  --danger: #ef4444;
  --danger-hover: #dc2626;
  --warning: #f59e0b;
  --info: #3b82f6;

  --border-color: rgba(255, 255, 255, 0.08);

  /* Layout */
  --sidebar-width: 260px;
  --topbar-height: 70px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 15px rgba(37, 211, 102, 0.3);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ── Layout ── */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background-color: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: transform 0.3s ease;
}

.main-wrapper {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: margin-left 0.3s ease;
}

/* ── Sidebar ── */
.sidebar-brand {
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid var(--border-color);
}

.brand-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-primary);
  margin-right: 12px;
  filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.4));
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #fff, #a0a6b1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sidebar-nav {
  flex: 1;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition);
  font-weight: 500;
}

.nav-item svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  transition: var(--transition);
}

.nav-item:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

.nav-item.active {
  background-color: var(--accent-light);
  color: var(--accent-primary);
}

.nav-item.active svg {
  color: var(--accent-primary);
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.server-status {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
}

.status-dot.online {
  background-color: var(--accent-primary);
  box-shadow: 0 0 8px var(--accent-primary);
}

.status-dot.online::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent-primary);
  animation: pulse 2s infinite;
  opacity: 0;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ── Topbar ── */
.topbar {
  height: var(--topbar-height);
  background-color: rgba(15, 17, 21, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 90;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.topbar-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.api-key-badge {
  display: flex;
  align-items: center;
  background-color: var(--bg-tertiary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.api-key-badge:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.api-key-badge svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: var(--text-muted);
}

.copy-key-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  margin-left: 8px;
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-key-btn:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.1);
}

.copy-key-btn svg {
  margin: 0;
  width: 14px;
  height: 14px;
}

/* ── Content Area ── */
.content {
  padding: 32px;
  flex: 1;
}

.view {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.view.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

/* ── Stats Grid ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.15);
}

.stat-card:hover::before {
  transform: translateX(100%);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stat-icon.green {
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--accent-primary);
}

.stat-icon.blue {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--info);
}

.stat-icon.amber {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.stat-icon.purple {
  background-color: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

/* ── Activity Log / Terminals ── */
.activity-log {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px;
  max-height: 400px;
  overflow-y: auto;
}

.log-item {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  font-size: 0.875rem;
  transition: background-color 0.2s ease;
}

.log-item:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.log-item:last-child {
  border-bottom: none;
}

.log-time {
  color: var(--text-muted);
  margin-right: 16px;
  font-family: monospace;
  white-space: nowrap;
}

.log-content {
  color: var(--text-secondary);
  word-break: break-all;
}

.log-content strong {
  color: var(--text-primary);
}

/* ── Device Grid ── */
.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.device-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.device-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md);
}

.device-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.device-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.device-icon {
  width: 40px;
  height: 40px;
  background-color: var(--bg-tertiary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

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

.device-name {
  font-size: 1.125rem;
  font-weight: 600;
}

.device-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.device-status {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-ready {
  background-color: rgba(37, 211, 102, 0.15);
  color: var(--accent-primary);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.status-qr {
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-disconnected {
  background-color: rgba(239, 68, 68, 0.15);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-loading {
  background-color: rgba(59, 130, 246, 0.15);
  color: var(--info);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.device-webhook {
  font-size: 0.875rem;
  color: var(--text-secondary);
  background-color: rgba(0, 0, 0, 0.2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.device-webhook svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

.device-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
}

.device-actions button {
  flex: 1;
}

/* ── Buttons & Forms ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
  gap: 8px;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #000;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.btn-danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
  background-color: var(--danger);
  color: #fff;
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.btn-ghost:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

.btn-full {
  width: 100%;
}

.form-panel {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 800px;
}

.tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(0, 0, 0, 0.1);
}

.tab {
  flex: 1;
  padding: 16px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.tab:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.02);
}

.tab.active {
  color: var(--accent-primary);
  border-bottom-color: var(--accent-primary);
  background-color: transparent;
}

.tab-content {
  display: none;
  padding: 32px;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

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

.form-group label .required {
  color: var(--danger);
}

.form-group small {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/200.0/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a0a6b1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* ── API Reference ── */
.api-docs {
  max-width: 900px;
}

.api-base-url {
  background-color: var(--bg-secondary);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.api-base-url .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

.api-base-url code {
  color: var(--accent-primary);
  font-family: monospace;
  font-size: 1rem;
}

.api-auth-note {
  background-color: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--info);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 32px;
  font-size: 0.875rem;
  color: #bfdbfe;
}

.api-auth-note code {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
  font-family: monospace;
}

.endpoint-group {
  margin-bottom: 32px;
}

.endpoint-group h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.endpoint {
  display: flex;
  align-items: center;
  background-color: var(--bg-secondary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  border: 1px solid var(--border-color);
  font-family: monospace;
}

.endpoint .method {
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 16px;
  width: 50px;
  text-align: center;
}

.endpoint .method.get {
  background-color: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.endpoint .method.post {
  background-color: rgba(37, 211, 102, 0.15);
  color: #4ade80;
}

.endpoint .method.delete {
  background-color: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.endpoint .method.patch {
  background-color: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.endpoint code {
  color: var(--text-primary);
  font-size: 0.9375rem;
  min-width: 200px;
}

.endpoint .desc {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
}

.endpoint .desc em {
  color: var(--text-secondary);
  font-style: normal;
  font-family: monospace;
  background: rgba(0, 0, 0, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ── Live Logs Terminal ── */
.log-terminal {
  background-color: #000;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.875rem;
  height: 500px;
  overflow-y: auto;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.log-terminal .log-line {
  margin-bottom: 6px;
  line-height: 1.4;
  word-wrap: break-word;
}

.log-terminal .log-line .timestamp {
  color: #6b7280;
  margin-right: 12px;
}

.log-terminal .log-line .id {
  color: #a855f7;
  margin-right: 8px;
}

.log-terminal .log-line.system {
  color: #60a5fa;
  font-style: italic;
}

.log-terminal .log-line.success {
  color: #4ade80;
}

.log-terminal .log-line.error {
  color: #f87171;
}

.log-terminal .log-line.warn {
  color: #fbbf24;
}

/* ── Modals ── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal.modal-sm {
  max-width: 400px;
}

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

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-body {
  padding: 24px;
}

.modal-body.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* ── QR Code ── */
.qr-hint {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.qr-wrapper {
  width: 260px;
  height: 260px;
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  position: relative;
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.qr-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--bg-primary);
}

.qr-spinner p {
  margin-top: 16px;
  font-weight: 500;
  font-size: 0.875rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: var(--accent-primary);
  animation: spin 1s ease-in-out infinite;
}

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

/* ── Utilities ── */
.empty-state {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.9375rem;
}

.empty-state.full {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--bg-secondary);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-lg);
}

.send-result {
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  display: none;
}

.send-result.success {
  display: block;
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--accent-primary);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.send-result.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  :root {
    --sidebar-width: 240px;
  }

  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-wrapper {
    margin-left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .topbar {
    padding: 0 16px;
  }

  .content {
    padding: 20px 16px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .device-actions {
    flex-direction: column;
  }

  .api-base-url {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Login Overlay ── */
.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.login-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.login-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.login-box h2 {
  margin-bottom: 8px;
}

.login-box p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.9375rem;
}

.login-box .form-group {
  text-align: left;
}