/* ============================================================
   email-otp.css — Styles unique to the OTP reset page (email-otp.blade.php)
   Requires: auth.css
   ============================================================ */

/* ── Wider form field spacing (OTP page uses 18px gap vs 14px default) ── */
.form-field {
  margin-bottom: 18px;
}

/* ── btn-login alias (OTP page uses this class name) ── */
.btn-login {
  width: 100%;
  background: #F5C518;
  border: none;
  border-radius: 4px;
  padding: 12px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0d0d0d;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  margin-top: 6px;
}

.btn-login::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #C0392B;
  border-radius: 4px 0 0 4px;
}

.btn-login:hover {
  background: #ffd22e;
}

/* ── OTP digit input ── */
.otp-input {
  text-align: center;
  font-size: 18px;
  letter-spacing: 8px;
}