/* ===== Forgot Password Page — Specific Styles ===== */

/* Code input row */

.btn-code-row {
  display: flex;
  gap: 12px;
}

.btn-code-row .input-wrapper {
  flex: 1;
}

.btn-code {
  height: 52px;
  padding: 0 20px;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 8px;
  color: #dc2626;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  font-family: inherit;
}

.btn-code:hover:not(:disabled) {
  background: rgba(220, 38, 38, 0.35);
  border-color: #dc2626;
}

.btn-code:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-code.sent {
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
}


/* Auth subtitle override */

.auth-subtitle {
  margin-bottom: 28px;
}


/* Footer link section override */

.footer-link-section {
  padding-top: 24px;
}


/* Responsive */

@media (max-width: 640px) {
  .btn-code-row {
    flex-direction: column;
  }

  .btn-code {
    width: 100%;
  }
}
