form > * {
	font-size: 0.875rem;
}

form p.error {
	color: red;
	padding-bottom: 1em;
}


.customcheck {
	margin: 1em 0 0;
	display: flex;
  	flex-direction: row;
}

.customcheck > div {
	padding-right: 1.5em;
}

.customcheck > div label {
	padding-top: 3px;
}

input[type=text],
input[type=file],
input[type=email],
input[type=password],
input[type=num],
input[type=tel],
select,
textarea
 {
  width: 100%;
  padding: 1em;
  margin:0.5em 0 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit],
input[type=button] {
  width: 100%;
  background-color: #555555;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover,
input[type=button]:hover {
  background-color: #999;
}

textarea {
	resize: vertical;
	height: 150px;
}

label {
  font-weight: normal;
}

/* Costum Radio */

.cnt {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.cnt input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #6C6C6C;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.cnt:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.cnt input:checked ~ .checkmark {
  background-color: #555555;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.cnt input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.cnt .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}






/* ----------------------------------- */

/*fieldset, legend {
	margin: 0;
	padding: 0;
	border: none;
}


legend, label, input, textarea,  form img {
	float: left;
}

legend, label, input#abschicken, input#spamer, form p, p#legend {
	clear: left;
}

legend, label {
	width: 110px;
	padding-top: 10px;
}

legend {
	padding-top: 2px;
}

fieldset label {
	float: none;
	clear: none;
	width: auto;
	padding-top: 0;
}

legend span, label span, p#legend span {
	color: #be2d21;
}

input, textarea {
	float: left;
	padding: 3px 2px;
	margin: 5px 0;
	width: 270px;
	border: 1px solid #ddd;
	background: #fff;
	border-radius: 2px;
	font: 12px/1.5 Verdana, Geneva, Arial, Helvetica, sans-serif;
}

select {
	float: left;
	margin: 10px 10px 10px 0;
}

input:focus, textarea:focus {
	background: #f9f9f9;
	border: 1px solid #eee;
	outline: none;
}

input#herr, input#frau {
	float: none;
	margin-right: 5px;
	width: auto;
	height: auto;
	background: transparent;
	border: 0;
	box-shadow: none;
}

input#herr {
	margin-left: 20px;
}

input#plz {
	margin-right: 5px;
	width: 57px;
}

input#ort {
	width: 202px;
}

textarea {
	padding: 2px;
	height: 140px;
	resize: vertical;
}

form img {
	margin: 5px 0 10px 0;
}

form p, input#spamer, input#abschicken {
	margin-left: 112px;
}

form p {
	padding: 0;
}

input#abschicken {
	padding: 4px 5px;
	margin-top: 20px;
	width: 120px;
	background: #ddd;
	color: #000;
	cursor: pointer;
}

input#abschicken:hover {
	color: #fff;
}

input#abschicken:focus {
	border: none;
}

p#legend {
	font-size: 80%;
}

.formFehler {
	color: red;
	text-align: left;
	font-size: 80%;
}

.inputFehler {
	border: 1px solid #ff0000;
}*/