.view-verify-2fa {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

.email-highlight {
  color: var(--fg);
  font-weight: 600;
}

.input-code {
  width: 100%;
  letter-spacing: 12px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  padding: 12px;
  background: rgba(0, 0, 0, 0.55);
  border: 1.5px solid rgba(255, 170, 30, 0.25);
  border-radius: 10px;
  color: var(--fg);
  outline: none;
  margin-bottom: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.input-code:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 170, 30, 0.15), 0 0 18px rgba(255, 170, 30, 0.25);
  background: rgba(0, 0, 0, 0.7);
}

.resend-row {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-link {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.btn-link:hover {
  color: var(--gold-hi);
}

.back-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--gold-hi);
}
