/* ============================================================
   al-dark-theme.css — Shared Dark Theme Components
   Source: dark-theme.module.css (CSS Module → plain CSS)
   Load after al-variables.css
   ============================================================ */

.al-dark-theme {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(79, 156, 255, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 78% 18%, rgba(255, 110, 199, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 80%, rgba(78, 231, 240, 0.16) 0%, transparent 50%),
    linear-gradient(135deg, #07111f 0%, #0d1b2f 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Inter Tight', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
}

.al-glass-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.al-dark-input {
  width: 100%;
  padding: 14px 18px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  outline: none;
}

.al-dark-input::placeholder {
  color: rgba(174, 187, 208, 0.5);
}

.al-dark-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(78, 231, 240, 0.15);
  background: rgba(255, 255, 255, 0.09);
}

.al-dark-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}

.al-dark-footer {
  text-align: center;
  padding: 32px 0;
  color: var(--muted);
  font-size: 14px;
}

.al-dark-footer a {
  color: var(--cyan);
  text-decoration: none;
}

.al-dark-footer a:hover {
  text-decoration: underline;
}
