/* ═══════════════════════════════════════════════════════════════
   LOGIN PAGE - PREMIUM DESIGN SYSTEM
   (Shooting star switched to landing.ejs canvas version)
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────── */
/* CSS CUSTOM PROPERTIES */
/* ─────────────────────────────────────────────────────────────── */

:root {
  /* Colors - Primary Palette */
  --color-primary: #6366f1;
  --color-primary-dark: #4f46e5;
  --color-primary-light: #818cf8;
  --color-secondary: #ec4899;
  --color-accent: #06b6d4;

  /* Colors - Neutral Palette */
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  /* Colors - Semantic */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;

  /* Background Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;

  /* Font Weights */
  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-Index Scale */
  --z-background: -1;
  --z-base: 0;
  --z-overlay: 10;
  --z-modal: 20;
  --z-navbar: 30;
  --z-tooltip: 40;

  /* Background runtime vars */
  --parallax-x: 0px;
  --parallax-y: 0px;
}

/* ─────────────────────────────────────────────────────────────── */
/* RESET & BASE STYLES */
/* ─────────────────────────────────────────────────────────────── */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--weight-normal);
  line-height: 1.6;
  color: var(--color-gray-800);
  background: #0f0f23;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  width: 100%;
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ─────────────────────────────────────────────────────────────── */
/* BACKGROUND CANVAS */
/* ─────────────────────────────────────────────────────────────── */

.background-canvas {
  position: fixed;
  inset: 0;
  z-index: var(--z-background);
  background: linear-gradient(135deg, #0f0f23 0%, #151530 50%, #0f1533 100%);
  overflow: hidden;
  will-change: transform, opacity;
}

.background-canvas canvas#shooting {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Grid removed */
.grid-pattern {
  display: none !important;
  background: none !important;
  animation: none !important;
}

.aurora {
  position: absolute;
  inset: -20% -10%;
  filter: blur(40px) saturate(120%);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.45;
}
.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Blue family sweep: navy → royal → sky → cyan → back to navy */
  background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(30, 58, 138, 0) 0turn,
    /* #1e3a8a (blue-900), transparent */ rgba(30, 64, 175, 0.35) 0.12turn,
    /* #1e40af (blue-800) */ rgba(37, 99, 235, 0.3) 0.25turn,
    /* #2563eb (blue-600) */ rgba(14, 165, 233, 0.28) 0.37turn,
    /* #0ea5e9 (sky-500) */ rgba(2, 132, 199, 0.32) 0.5turn,
    /* #0284c7 (sky-600) */ rgba(56, 189, 248, 0.28) 0.62turn,
    /* #38bdf8 (sky-400) */ rgba(6, 182, 212, 0.26) 0.75turn,
    /* #06b6d4 (cyan-500) */ rgba(30, 58, 138, 0) 1turn
  );
  mask: radial-gradient(ellipse 120% 60% at 50% 50%, #000 40%, transparent 70%);
  animation: auroraShift 48s linear infinite;
  transform: rotate(0deg) translateZ(0);
  will-change: transform, filter, opacity;
}
.aurora::after {
  animation-duration: 56s;
  animation-direction: reverse;
  filter: hue-rotate(0deg); /* keep the sweep purely blue */
  opacity: 0.7;
}

/* Starfield/Bokeh layers */
.stars,
.bokeh {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0.7;
  animation: twinkle 4s ease-in-out infinite;
  will-change: opacity, transform;
  transform: translate3d(0, 0, 0) scale(1);
}
.star.tiny {
  width: 1px;
  height: 1px;
  opacity: 0.6;
}
.star.medium {
  width: 3px;
  height: 3px;
  opacity: 0.8;
}
.star.big {
  width: 4px;
  height: 4px;
  opacity: 0.9;
  filter: blur(0.5px);
}

/* ─────────────────────────────────────────────────────────────── */
/* NAVIGATION */
/* ─────────────────────────────────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-navbar);
  background: rgba(15, 15, 35, 0.72);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-4) 0;
  transition: all var(--transition-medium);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-white);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  transition: all var(--transition-fast);
}
.navbar-brand:hover {
  transform: translateY(-1px);
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--text-lg);
  box-shadow: var(--shadow-lg);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-primary {
  font-weight: var(--weight-bold);
  color: var(--color-white);
}
.brand-secondary {
  font-weight: var(--weight-medium);
  color: var(--color-primary-light);
  font-size: var(--text-sm);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: var(--space-8);
  align-items: center;
}
.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--weight-medium);
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}
.nav-link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}
.nav-cta {
  background: var(--gradient-primary);
  color: var(--color-white) !important;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-fast);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: var(--color-primary-light);
}

/* ─────────────────────────────────────────────────────────────── */
/* MAIN CONTENT LAYOUT */
/* ─────────────────────────────────────────────────────────────── */

.main-content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px var(--space-6) var(--space-6);
  position: relative;
  z-index: var(--z-base);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
.login-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────── */
/* WELCOME SECTION */
/* ─────────────────────────────────────────────────────────────── */

.welcome-section {
  margin-bottom: var(--space-8);
}
.welcome-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  background: var(--gradient-accent);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--text-2xl);
  box-shadow: var(--shadow-2xl);
}
.welcome-title {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.welcome-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────── */
/* FORM CARD */
/* ─────────────────────────────────────────────────────────────── */

.form-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
}

.form-header {
  text-align: center;
  margin-bottom: var(--space-8);
}
.form-title {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}
.form-subtitle {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────── */
/* FORM ELEMENTS */
/* ─────────────────────────────────────────────────────────────── */

.login-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: left;
}
.form-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--weight-medium);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}
.form-label i {
  color: var(--color-primary-light);
  width: 16px;
  text-align: center;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.form-input {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  color: var(--color-white);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  transition: all var(--transition-medium);
  outline: none;
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.form-input:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.password-wrapper {
  position: relative;
}
.password-toggle {
  position: absolute;
  right: var(--space-4);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-lg);
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
}
.password-toggle:hover {
  color: var(--color-primary-light);
  background: rgba(255, 255, 255, 0.1);
}

/* ─────────────────────────────────────────────────────────────── */
/* FORM OPTIONS */
/* ─────────────────────────────────────────────────────────────── */

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin: var(--space-2) 0;
}
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  user-select: none;
}
.checkbox-wrapper input[type="checkbox"] {
  display: none;
}
.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  background: transparent;
  position: relative;
  transition: all var(--transition-fast);
}
.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--gradient-primary);
  border-color: var(--color-primary);
}
.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
}
.checkbox-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.forgot-link {
  color: var(--color-primary-light);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-decoration: none;
  padding: var(--space-1);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.forgot-link:hover {
  color: var(--color-primary);
  background: rgba(99, 102, 241, 0.12);
}

/* ─────────────────────────────────────────────────────────────── */
/* SUBMIT BUTTON */
/* ─────────────────────────────────────────────────────────────── */

.submit-btn {
  position: relative;
  width: 100%;
  padding: var(--space-5) var(--space-6);
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  overflow: hidden;
  margin: var(--space-4) 0;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-lg);
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.submit-btn:active {
  transform: translateY(0);
}
.btn-text {
  position: relative;
  z-index: 2;
}
.btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  opacity: 0;
  transition: opacity var(--transition-medium);
}
.submit-btn:hover .btn-bg {
  opacity: 1;
}
.btn-ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 600ms ease-out;
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────── */
/* ALERTS */
/* ─────────────────────────────────────────────────────────────── */

.alert {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-6);
  text-align: left;
}
.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}
.alert-error i {
  color: var(--color-error);
}

/* ─────────────────────────────────────────────────────────────── */
/* FORM FOOTER */
/* ─────────────────────────────────────────────────────────────── */

.form-footer {
  text-align: center;
  margin-top: var(--space-6);
}
.footer-text {
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--text-sm);
}
.register-link {
  color: var(--color-primary-light);
  font-weight: var(--weight-semibold);
  margin-left: var(--space-1);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.register-link:hover {
  color: var(--color-primary);
  background: rgba(99, 102, 241, 0.12);
}

/* ─────────────────────────────────────────────────────────────── */
/* RESPONSIVE DESIGN */
/* ─────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }
  .navbar-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-8);
    gap: var(--space-4);
    transform: translateX(-100%);
    transition: transform var(--transition-medium);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar-menu.open {
    transform: translateX(0);
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: var(--space-4);
    text-align: center;
    border-radius: var(--radius-lg);
  }
  .main-content {
    padding: 100px var(--space-4) var(--space-4);
  }
  .login-container {
    max-width: 100%;
  }
  .form-card {
    padding: var(--space-8);
  }
  .welcome-title {
    font-size: var(--text-3xl);
  }
  .form-options {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }
  .checkbox-wrapper {
    justify-content: center;
  }
  .forgot-link {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 0 var(--space-4);
  }
  .brand-text {
    display: none;
  }
  .main-content {
    padding: 100px var(--space-3) var(--space-3);
  }
  .form-card {
    padding: var(--space-6);
  }
  .form-title {
    font-size: var(--text-2xl);
  }
  .welcome-title {
    font-size: var(--text-2xl);
  }
  .welcome-icon {
    width: 60px;
    height: 60px;
    font-size: var(--text-xl);
  }
}

/* ─────────────────────────────────────────────────────────────── */
/* ACCESSIBILITY */
/* ─────────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus management */
.form-input:focus,
.submit-btn:focus,
.nav-link:focus,
.forgot-link:focus,
.register-link:focus,
.checkbox-wrapper:focus-within {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .background-canvas,
  .navbar {
    display: none;
  }
  .main-content {
    padding-top: 0;
  }
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
  }
}

/* === STOP ALL BACKGROUND MOTION (Register) === */
.aurora,
.aurora::before,
.aurora::after {
  animation: none !important; /* stop hue rotation */
  filter: none !important; /* remove hazy/smoky blur */
  opacity: 0.28 !important; /* keep subtle tint (static) */
}

.gradient-orb {
  animation: none !important; /* stop floating */
  transform: none !important;
}

.star {
  animation: none !important; /* stop twinkle flicker */
}

.bokeh-dot {
  animation: none !important; /* stop drifting circles */
}

/* Hide shooting star canvas entirely */
.background-canvas canvas#shooting {
  display: none !important;
}

/* ─────────────────────────────────────────────────────────────── */
/* KEYFRAMES */
/* ─────────────────────────────────────────────────────────────── */

@keyframes gridShift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 1000px 600px, 600px 1000px;
  }
}

@keyframes noisePulse {
  0%,
  100% {
    opacity: 0.22;
  }
  50% {
    opacity: 0.32;
  }
}

@keyframes orbFloat {
  0% {
    transform: translate3d(0px, 0px, 0) scale(1);
  }
  25% {
    transform: translate3d(18px, -10px, 0) scale(1.02);
  }
  50% {
    transform: translate3d(-12px, 12px, 0) scale(0.99);
  }
  75% {
    transform: translate3d(8px, -6px, 0) scale(1.01);
  }
  100% {
    transform: translate3d(0px, 0px, 0) scale(1);
  }
}

@keyframes auroraShift {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
    filter: hue-rotate(0deg) saturate(120%);
  }
  50% {
    transform: rotate(180deg) translate3d(2%, -1%, 0);
    filter: hue-rotate(25deg) saturate(140%);
  }
  100% {
    transform: rotate(360deg) translate3d(0, 0, 0);
    filter: hue-rotate(0deg) saturate(120%);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.06);
  }
}

@keyframes bokehFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.18;
  }
  50% {
    transform: translate3d(0, -30px, 0) scale(1.05);
    opacity: 0.3;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.18;
  }
}
.password-toggle {
  color: #666 !important; /* Dark gray color */
}

.password-toggle:hover {
  color: #333 !important; /* Darker on hover */
}
