.is-hidden {
  display: none;
}

.otp-page {
  margin: 0;
}

.otp-label {
  display: block;
  margin-bottom: 0.55rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.otp-inputs {
  display: grid;
  grid-template-columns: repeat(6, minmax(42px, 1fr));
  gap: 0.5rem;
}

.otp-digit {
  height: 46px;
  text-align: center;
  font-size: 1.2rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
}

.otp-digit:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 1px;
  border-color: #2563eb;
}

.otp-submit {
  width: 100%;
  margin-top: 0.95rem;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: #ff5a1f;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.otp-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.otp-status {
  display: none;
}

.otp-actions {
  margin-top: 0.9rem;
  display: flex;
  justify-content: flex-start;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.otp-link-btn,
.otp-link {
  border: 0;
  background: none;
  color: #1d4ed8;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.otp-link-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
