/* estilos-form2.css - limpio, neutro y compatible con Bootstrap */

.form-control, .form-select, textarea {
  border-radius: 8px;
  border: 1px solid #d2cfc6;
  background: #fff;
  padding: 10px 12px;
  transition: box-shadow .15s ease, border-color .15s ease;
}

.form-control:focus, .form-select:focus, textarea:focus {
  border-color: #8f7d57;
  box-shadow: 0 0 0 4px rgba(143,125,87,0.08);
  outline: none;
}

.card {
  border-radius: 12px;
}

.btn-primary {
  background: #8f7d57;
  border-color: #8f7d57;
}

.btn-primary:hover {
  background: #7b6b49;
  border-color: #7b6b49;
}

/* errores */

.text-danger.d-none {
  display: none;
}

.text-danger {
  font-size: 0.9rem;
}

/* responsive fine tune */

@media (max-width: 576px) {
  .card-body {
    padding: 1rem;
  }
}

