/* Formulario - estilos personalizados */
.form-success {
  background-color: #d1fae5;
  color: #047857;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.form-error {
  background-color: #fee2e2;
  color: #b91c1c;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.btn-primary {
  width: 100%;
  height: 3rem;
  background-color: #2563eb;
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background 0.2s;
  cursor: pointer;
}
.btn-primary:hover:not(:disabled) {
  background-color: #1d4ed8;
}
.btn-primary:disabled,
.btn-primary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.input-lg {
  width: 100%;
  height: 3rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0 1rem;
  font-size: 1rem;
}
