/* ====== Login Page Custom Styles ====== */
 body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    .login-step {
      transition: opacity 0.3s ease-in-out;
    }
    .login-step.hidden {
      display: none;
      opacity: 0;
    }
    .login-step.active {
      display: block;
      opacity: 1;
    }
    .otp-digit {
      width: 2.5rem;
      height: 3rem;
      text-align: center;
      font-size: 1.25rem;
      border: 1px solid #d1d5db;
      border-radius: 0.375rem;
    }
    .otp-digit:focus {
      outline: none;
      border-color: #1eacc6;
      box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
    }
.login-step {
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.login-step.active {
  display: block;
}

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

.otp-digit {
  width: 48px;
  height: 48px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background-color: white;
  color: #111827;
  transition: all 0.2s ease;
}

.otp-digit:focus {
  outline: none;
  border-color: #1eacc6;
  box-shadow: 0 0 0 3px rgba(119, 82, 254, 0.2);
  transform: translateY(-2px);
}

/* Dark mode support */
html.dark body {
  background: linear-gradient(to bottom right, #1a202c, #2d3748);
}

html.dark .otp-digit {
  background-color: #2d3748;
  border-color: #4a5568;
  color: #f7fafc;
}

html.dark input,
html.dark .border-gray-300 {
  background-color: #2d3748;
  border-color: #4a5568;
  color: #f7fafc;
}

html.dark .bg-white {
  background-color: #1a202c;
}

html.dark .text-gray-800 {
  color: #f7fafc;
}

html.dark .text-gray-600 {
  color: #cbd5e0;
}

html.dark .bg-gray-50 {
  background-color: #2d3748;
}