/* CSS Document */

#myForm {
	
	}
	#myForm label {
		width: 250px;
		
	}
	#myForm label.error, #commentForm input.submit {
		margin-left: 253px;
		color:#FF0000;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		font-style:normal;
		font-weight:400;
		font-size:0.90em;
		
	}

	#myForm label.error {
		margin-left: 8px;
		
		width: auto;
		display: inline;
	}
	#newsletter_topics label.error {
		display: none;
		margin-left: 103px;
	}
        
        
/* Container: Radios + Legend in eine Reihe */
.radiorowmm {
  display:left;
  align-items: left;
  gap: 0.5rem;
  border: 0;
  padding: 0;
  margin: 0;
  flex-wrap: wrap; /* Zeilenumbruch erlauben, falls wenig Platz */
  font-weight:normal;
}

/* Legend links mit etwas Abstand */
.radiorowmm > legend {
  margin-right: 1rem;
}

/* JEDES Label (enthält den Radio + Text) nebeneinander, klickbar */
.radiorowmm label.labelmma {
  display: inline-flex;
  align-items: center;
  gap: .4rem;       /* Abstand zwischen Kreis und "Ja/Nein" */
  margin-right: 1rem;
  cursor: pointer;
}

/* Optional: Browser-Defaults glätten */
.radiorowmm label.labelmma > input[type="radio"] {
  margin: 0;
}
.radiorowmm { outline:0px dashed red; }

