/*
 Theme Name:   Infodati
 Template:     thegem-elementor
 Version:      1.0
*/
#responsive-form .form-row {
  display: flex;
  flex-wrap: wrap;       /* va a capo se non c’è spazio */
  gap: 1rem;             /* spazio tra label+input */
  margin-bottom: 1rem;
}

#responsive-form .form-row label {
  flex: 1 1 45%;         /* ciascun campo occupa circa metà riga */
  min-width: 200px;      /* evita di restringersi troppo */
}

#responsive-form .form-row label input,
#responsive-form .form-row label textarea,
#responsive-form .form-row label select {
  width: 100%;           /* input sempre 100% dentro il label */
  box-sizing: border-box;
}

#responsive-form b {
  flex-basis: 100%;      /* titolo disponibilità su riga intera */
  margin-bottom: 0.5rem;
}
/* Stile per link privacy CF7 */
#responsive-form .privacy-link {
  color: #776E6E !important;       /* marrone scuro */
  font-weight: 700 !important;     /* grassetto */
  text-decoration: underline !important; /* sottolineato */
}

#responsive-form .privacy-link:hover,
#responsive-form .privacy-link:focus {
  color: #5c2e00 !important;       /* marrone più scuro */
  outline: 2px solid #3a1b00 !important;
}