/*	Layout der Unterwebseite register.php */
/*	Auf dem Smartphone werden die neben den Formularfeldern angezeigten
	Formularhinweise weggelassen, der Platzhalter in den Formularfeldern
	sollte als Hinweis reichen, welche Daten in welches Formular eingetragen
	werden sollen */

/*	Auf dem Smartphone stehen die Formulare untereinander */
.register {
	margin-left: 1em;
	margin-right: 1em;
}
.infos {
	background-color: white;
	margin: 0.1em 0 0.2em 0;
	padding: 0.1em;
}
.infos p {
	text-align: left;
}
.infos h1 {
	font-size: 1.4em;
	font-weight: bolder;
}
#reg_form {
	background-color: white;
	border-top: 1px solid #a4ceef;
	border-bottom: 1px solid #a4ceef;
	padding: 0.2em;
	display: grid;
	grid-template-rows: auto 2em;
	grid-template-areas:  
	"input"
	"button";
}
#reg_form .label {
	display: none;
}
#reg_form .input {
	grid-area: input;
	padding: 0.4em;
	text-align: center;
}
#reg_form .regbutton {
	grid-area: button;
	text-align: center;
}
#btn_reg_weiter:disabled {
    cursor: not-allowed;
    pointer-events: none;
}
#datenschutz {
	-webkit-appearance: none;
	display: none;
}
#datenschutz + label {
	position: relative;
	display: inline-flex;
	cursor: pointer;
	font-weight: bold;
	font-size: 0.8em;
	line-height: 1em;
}
#datenschutz + label:before {
	width: 50px;
	height: 21px;
	border-radius: 20px;
	border: 2px solid #ddd;
	background-color: #EEE;
	content: "";
	margin-right: 5px;
	margin-top: 5px;
	transition: background-color 0.5s linear;
}
#datenschutz + label:after {
	width: 20px;
	height: 20px;
	border-radius: 20px;
	background-color: #fff;
	content: "";
	transition: margin 0.1s linear;
	box-shadow: 0px 0px 5px #aaa;
	position: absolute;
	left: 2px;
	top: 7px;
}
#datenschutz:checked + label:before {
  background-color: #2b8718;
}
#datenschutz:checked + label:after {
  margin: 0 0 0 30px;
}
#reg_form input {
	line-height: 1.3em;
	margin-bottom: 0.2em
}
/*	Auf breiteren Bildschirmen stehen neben den Formularfeldern Hinweise zu jedem
	Formularfeld */
@media all and (min-width: 1024px) {
	#reg_form {
		padding: 0.2em;
		display: grid;
		grid-template-columns: 2fr 3fr;
		grid-template-rows: 1fr 2em;
		grid-template-areas:  
		"label input"
		"button button";
	}
	#reg_form .label {
		grid-area: label;
		font-weight: bold;
		font-size: 1.2em;
		display: block;
		text-align: right;
		line-height: 2.1em;
	}
	#reg_form .input {
		grid-area: input;
		text-align: left;
		line-height: 2.3em;
	}
	#reg_form .regbutton {
		grid-area: button;
	}
	#reg_form input {
		line-height: 1.3em;
	}
	#datenschutz {
		margin-left: -5em;
	}
	#datenschutz + label {
		font-size: 1.2em;
		line-height: 2.1;
		font-weight: bold;
	}
}
#reg_form h1 {
	font-size: 1.4em;
	font-weight: bolder;
	text-align: center;
}
#reg_form label {
	line-height: 1.6em;
}
.fehler {
	color: #bf3100;
	text-align: left;
}
.fehler strong {
	font-weight: bolder;
	font-size: 1.3em;
	text-align: center;
}
#pwhinw {
	font-size: 1em;
	padding: 0.1em 1em 0.1em 1em;
}
.pw_staerke {
	color:#333;
	font-family:Tahoma, Arial, Verdana, Helvetica, normal, sans-serif;
	font-style: normal;	
	font-size: 0.8em;
	background-image: url(../grafiken/bg_strength_gradient.jpg);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 200px;
	z-index: 0;
	border: 1px solid gray;
	display: none;
	height: 1.2em;
	text-align: center;
	margin: 0.1em 0 0 2em;
}
strong {
	font-weight: bold;
}
