/* ─── ADICIONAR AO FINAL DO auth.css ─────────────────────────────────── */

/* Verify Page */
.verify-header { text-align: center; margin-bottom: 24px; }
.verify-icon { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--red-soft); display: flex; align-items: center; justify-content: center; }
.verify-icon svg { width: 28px; height: 28px; color: var(--red); }
.verify-title { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.verify-desc { font-size: 0.78rem; color: var(--grey); line-height: 1.5; }
.verify-desc strong { color: var(--white); font-weight: 600; }

/* Code Inputs */
.code-inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.code-digit {
  width: 48px;
  height: 58px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  caret-color: var(--red);
}
.code-digit:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
  background: var(--surface-2);
}
.code-digit.success {
  border-color: var(--success);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
  color: var(--success);
}
.code-separator {
  width: 12px;
  height: 2px;
  background: var(--border-light);
  border-radius: 1px;
  flex-shrink: 0;
}

/* Shake animation */
@keyframes shakeX {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}
.code-inputs.shake {
  animation: shakeX 0.45s ease-in-out;
}

/* Resend */
.resend-row {
  text-align: center;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--grey);
}
.resend-btn {
  background: none;
  border: none;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  transition: opacity 0.2s;
}
.resend-btn:disabled {
  color: var(--grey-muted);
  cursor: not-allowed;
}
.resend-btn:not(:disabled):hover {
  text-decoration: underline;
}

/* Responsive - code inputs menores em telas pequenas */
@media (max-width: 380px) {
  .code-digit {
    width: 42px;
    height: 52px;
    font-size: 1.2rem;
    border-radius: 12px;
  }
  .code-inputs { gap: 6px; }
}