/* OTP entry follows the configured service digit count and keeps each digit visibly separate. */
.otp-inputs { display: flex; justify-content: center; gap: 10px; direction: ltr; margin: 6px 0 2px; }
.otp-digit { width: 48px; height: 58px; padding: 0; text-align: center; font-size: 1.35rem; font-weight: 700; direction: ltr; background: #f4f5f7; border: 1px solid #dfe3e9; border-radius: 12px; }
.otp-digit:focus { border-color: #222; background: #fff; box-shadow: 0 0 0 3px #20202012; }
.otp-digit:invalid { border-color: var(--invalid); }
@media (max-width: 390px) { .otp-inputs { gap: 6px; } .otp-digit { width: 42px; height: 54px; } }
