/**
 * Auth Login Page Styles
 * Styles for phone entry, OTP verification, and password login steps
 */

/* ==================== */
/* OTP Input Blocks     */
/* ==================== */
.otp-input {
  width: 50px !important;
  height: 50px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 5px;
  border-radius: 8px;
  flex-shrink: 0;
}

.otp-input:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

.otp-inputs-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
}

/* ==================== */
/* Timer                */
/* ==================== */
.timer-text {
  font-size: 0.9rem;
  color: var(--bs-secondary);
}

.timer-text.expired {
  color: var(--bs-danger);
}

/* ==================== */
/* Phone Display        */
/* ==================== */
.phone-display {
  direction: ltr;
  font-family: monospace;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* ==================== */
/* Step Container       */
/* ==================== */
.step-container {
  display: none;
}

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

/* ==================== */
/* Auth Buttons         */
/* ==================== */
.auth-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  white-space: nowrap;
}

.auth-btn .spinner-border {
  flex-shrink: 0;
}
