@charset "utf-8";
* {
	border: 0;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-size: 14px;
	font-family: 'Futura', 'Verdana', 'Arial', sans-serif;
	font-weight: normal;
	color: #505050;
	background-image: url("../images/hintergrund.png");
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100vh;
}

#infobox {
	position: absolute;
	display: flex;
	background-color: rgba(255,255,255,.85);
	box-shadow: 0 3px 6px rgba(0,0,0,0.85);
	padding: 30px;
	border-radius: 12px;
	flex-direction: column;
	align-content: center;
	width: 350px;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#infobox .logo {
	margin-bottom: 20px;
	text-align: center;
}

#infobox .logo img {
	width: 240px;
	height: auto;
}

#infobox h2 {
	text-transform: uppercase;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #000;
}

#infobox .text {
	line-height: 1.4;
}

#infobox .text p + p {
	margin-top: 10px;
}

h3 {
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 10px;
}

p {
	line-height: 1.4;
	margin-bottom: 10px;
}

#fehlermeldung,
#erfolg {
	margin: 10px 0;
	background-color: #AA090C;
	color: #FFF;
	padding: 10px;
	border-radius: 12px;
}

#erfolg {
	background-color: #1D8F14;
	line-height: 1.4;
}

#fehlermeldung h3,
#erfolg h3 {
	font-size: 14px;
}

#fehlermeldung ol {
	list-style-position: inside;
	font-size: 12px;
}

#fehlermeldung ol > li {
	line-height: 1.4;
	margin-bottom: 5px;
}

form fieldset.name { display: none; }

form fieldset { min-height: 32px; }
form fieldset + fieldset {
	margin-top: 10px;
}

form fieldset.text {
	line-height: 32px !important;
	text-align: center;
	font-size: 16px;
}

form fieldset input {
	width: 100%;
	height: 32px;
	line-height: 32px;
	padding: 0 5px;
	background-color: #FFF;
	border: 1px solid #dedede;
}

form fieldset input:focus {
	border-color: #2ad2c9;
}

form fieldset button,
form fieldset.btn a {
	display: block;
	width: 100%;
	height: 45px;
	line-height: 45px;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	background-color: #2ad2c9;
	text-decoration: none;
	color: #FFF;
	cursor: pointer;
}

form fieldset.btn a {
	background-color: #AA090C;
}

.hidev { visibility: hidden; }

#infobox.loggedin .centerme {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

#infobox.loggedin .centerme > .links {
	order: 2;
}

#infobox.loggedin .centerme > .rechts {
	order: 1;
	margin-bottom: 30px;
}

#infobox.loggedin .centerme > .rechts a#vorschlag_accept {
	text-decoration: underline;
	font-weight: bold;
	color: #505050;
}

@media only screen and (min-width: 440px) {
	#infobox {
		width: 420px;
		height: auto;
	}
	
	#infobox .logo img {
		width: 300px;
		height: auto;
	}
}

@media only screen and (min-width: 840px) {
	#infobox.loggedin {
		width: 800px;
	}
	
	#infobox.loggedin .centerme {
		display: flex;
		justify-content: space-between;
		flex-direction: row;
	}
	
	#infobox.loggedin .centerme > .links {
		order: 1;
		width: 55%;
	}
	
	#infobox.loggedin .centerme > .rechts {
		order: 2;
		width: 40%;
		margin-bottom: 0;
	}
}