/* ── OTP Box Fix ── */
.otp-row {
  display: flex;
  gap: 8px;
  margin-bottom: 1.2rem;
  justify-content: center;
}
.otp-box {
  width: 42px !important;
  height: 50px !important;
  flex: none !important;
  aspect-ratio: unset !important;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  border: 2px solid #e2e2ea;
  border-radius: 10px;
  background: #f4f4f6;
  color: #0a1628;
  outline: none;
  transition: all 0.2s;
  padding: 0;
  line-height: 1;
  caret-color: #c9962c;
}
.otp-box:focus {
  border-color: #c9962c;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 150, 44, 0.15);
  transform: scale(1.05);
}
