.otpRow {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 8px 0 16px;
}

.otpBox {
  width: 48px;
  height: 56px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #070202;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  font-family: 'Courier New', monospace;
}

.otpBox:focus {
  border-color: #9b1de9;
  background: rgba(155,29,233,0.12);
}