:root {
  --bs-font-sans-serif: "Inter", sans-serif;
  --bs-body-bg: #f8f9fa;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-body-bg);
}

.login-card {
  border: none;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.form-control {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background-color: #fcfcfc;
  transition: all 0.2s ease;
}
.form-control:focus {
  background-color: #fff;
  border-color: #212529;
  box-shadow: 0 0 0 4px rgba(33, 37, 41, 0.1);
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #f8f9fa;
  color: #6c757d;
}

/* OTP Input Styling */
.otp-input {
  width: 45px;
  height: 56px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0;
  margin: 0 2px;
}

@media (min-width: 380px) {
  .otp-input {
    width: 48px;
    margin: 0 4px;
  }
}

.otp-input::-webkit-outer-spin-button,
.otp-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Custom Transition Class */
.transition-all {
  transition: all 0.2s ease;
}
.transition-all:hover {
  color: #0a58ca !important; /* Darker blue on hover */
}

/* Resend Link Disabled State */
.resend-disabled {
  color: #adb5bd !important;
  cursor: not-allowed;
  pointer-events: none;
}

.fade-in-up {
  animation: fadeInUp 0.4s ease-out forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
