/* BFVN form styles - placeholder, extend as needed */
.bfvn-form { display: grid; gap: 0.75rem; }
.bfvn-form input, .bfvn-form textarea, .bfvn-form select {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(15,23,42,0.1);
  border-radius: 0.75rem; font: inherit; background: #fff;
}
.bfvn-form input:focus, .bfvn-form textarea:focus {
  outline: none; border-color: #0369a1;
  box-shadow: 0 0 0 3px rgba(3,105,161,0.12);
}
.bfvn-form button[type=submit] {
  background: #0369a1; color: #fff; font-weight: 500;
  padding: 0.875rem 1.5rem; border-radius: 9999px; border: 0;
  cursor: pointer;
}
