/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
*,::after,::before{box-sizing:border-box}html{font-family:system-ui,Arial,sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;tab-size:4}body{margin:0}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,'Liberation Mono',Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:currentcolor}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}

html, body {
	background-color: #0f3a89;
	color: #ffffff;
	height: 100%;
	padding: 0px;
	margin: 0px;
	overflow-x: hidden;
}

body {
	background-attachment: fixed;
	font-family: "din-2014";
}

body * {
	padding: 0px;
	margin: 0px;
}

#bg {
	position: fixed;
	top: 0px;
	left: 0px;
	right:0px;
	bottom: 0px;
	background: #0f3a89 url('../img/bg.jpg') center center no-repeat;
	background-size: cover;
	z-index: 1;
	}
	
.top {
	position: absolute;
	top: 3vh;
	left: 0px;
	right: 0px;
	text-align: center;
	height: 6vh;
	z-index: 2;
}

.top img {
	max-height: 100%;
	width: auto;
	height: auto;
	max-width: 35%;
	margin: auto;
}

.header {
	position: absolute;
	top: 12vh;
	left: 0px;
	right: 0px;
	text-align: center;
	z-index: 2;
	transition: all 0.3s ease-out;
}

.header h1 {
	font-size: 3vh;
	text-transform: uppercase;
	text-align: center;
	text-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}

form {
	position: absolute;
	top: 31vh;
	left: 25px;
	right: 25px;
	text-align: center;
	font-weight: 300;
	font-size: 2.4vh;
	z-index: 2;
	transition: all 0.3s ease-out;
}

form h2 {
	font-size: 2.4vh;
	font-weight: 300;
	margin-bottom: 5vh;
	text-shadow: 0px 0px 8px rgba(0,0,0,0.2);
}

form div.textfield {
	margin-bottom: 3vh;
}

form div.textfield label {
	display: block;
	border-bottom: 1px solid #ffffff;
	display: flex;
}

form div.textfield label span {
	width: 25%;
	min-width: 25%;
	text-align: left;
	display: block;
	padding: 5px 0px;
}

form div.textfield label input {
	flex: 1;
	border: none;
	background: transparent;
	color: #ffffff;
	padding: 5px 0px;
}

form div.checkfield {
	text-align: left;
	margin-bottom: 3vh;
}

form div.checkfield label {
	display: block;
	position: relative;
	padding-left: 30px;
}

form div.checkfield label span {
	font-size: 1.8vh;
}

form div.checkfield label span a {
	color: #ffffff;
	text-decoration: underline;
}

form div.checkfield label input {
	position:absolute;
	left: 0px;
	top: 3px;
}

form div.submitfield {
	padding-bottom: 20vh;
}

form div.submitfield input {
	border: none;
	background: #ffffff;
	color: #003f98;
	font-weight: 700;
	padding: 0px 30px;
    height: 5vh;
	border-radius: 2.5vh;
	box-shadow: 0px 0px 25px rgba(0,0,0,0.2);
}

.confirmation {
	transform: translateX(-100vw);
	transition: all 0.3s ease-out;
	top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    position: absolute;
    color: #ffffff;
    z-index: 3;
	display: flex;
	align-items: center;
}

.confirmation > div {
	text-align: center;
	flex: 1;
}

.confirmation strong {
	font-size: 4vh;
	margin-bottom: 5vh;
	font-weight: bold;
	text-shadow: 0px 0px 25px rgba(0,0,0,0.2);
	text-transform: uppercase;
	display: block;
}

.confirmation p {
	font-size: 3vh;
}

body.confirm .header {
	transform: translateX(-100vw);
}

body.confirm form {
	transform: translateX(-100vw);
}

body.confirm .confirmation {
	transform: translateX(0px);
}