/* ROXPDV — recuperação de senha (estende login.css) */
.rx-forgot-actions {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 24px;
}

.rx-btn-ghost {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid var(--rx-border);
  background: var(--rx-surface);
  color: var(--rx-navy);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.rx-btn-ghost:hover {
  border-color: var(--rx-orange);
  color: var(--rx-orange);
  text-decoration: none;
}

.rx-forgot-actions .rx-btn-submit {
  flex: 1.2;
  margin-bottom: 0;
}

a.rx-btn-submit {
  text-decoration: none;
}

.rx-login-alert--info {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.rx-field label.error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #b91c1c;
  text-transform: none;
}

.rx-input-wrap input.error {
  border-color: #fca5a5;
}

@media (max-width: 480px) {
  .rx-forgot-actions {
    flex-direction: column;
  }

  .rx-forgot-actions .rx-btn-submit {
    flex: none;
    width: 100%;
  }
}
