/* Six separate OTP digit boxes — login + security 2FA */
.otp6-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.otp6 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}

.otp6 .otp6-digit {
  width: 44px;
  height: 48px;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, "JetBrains Mono", monospace;
  border-radius: var(--r-md);
  border: 1px solid var(--accent-light);
  background: var(--bg-input);
  color: var(--text-primary);
  transition: border-color 120ms, box-shadow 120ms;
}

.otp6 .otp6-digit:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-light);
}

@media (max-width: 380px) {
  .otp6 .otp6-digit {
    width: 40px;
    height: 44px;
    font-size: 1.1rem;
  }
}

.disable-2fa-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--accent-light);
}

.disable-2fa-actions {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
