html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    padding: 5px;
    right: 0;
    display: flex;
    background-color: #2D61B0;
    align-items: center;

}

.header div {
    margin-right: 15px;
}

.header h1 {
    margin: 5px 0 0 10px;
    font-size: 16px;
    font-family: sans-serif;
    color: white;
    font-weight: 400;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .header h1 {
        font-size: 22px;
    }
}

.header img {
    height: 60px;
}

.gws {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    position: fixed;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url(roboto.ttf) format('truetype');
}

.headerstart {
	display: flex;
	justify-content: center;
}

.headerstart img {
	height: 120px;
	margin: 50px;
}

.anmeldung {
	width: 360px;
	margin: auto;
}

.form td {
	color: white;
}

.form {
	position: relative;
	z-index: 1;
	background: #2D61B0;
	max-width: 360px;
	margin: 0 auto 100px;
	padding: 45px;
	text-align: left;
	box-shadow: 8px 8px 16px #1E1E1E;
}

.form input {
	
	font-family: "Roboto", sans-serif;
	outline: 0;
	background: #f2f2f2;
	width: 100%;
	border: 0;
	margin: 0 0 15px;
	padding: 15px;
	box-sizing: border-box;
	font-size: 14px;
}

.form h1 {
	font-size: 32px;
    color: white;
    font-weight: 400;
	text-align: center;
}

.form h3 {
	color: white;
}

.form button {
	
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	outline: 0;
	background: #C41E3A;
	width: 100%;
	border: 0;
	padding: 15px;
	color: #FFFFFF;
	font-size: 14px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}

.form table{
	display: flex;
	justify-content: center;
}

body {
	background: #ffffff; /* fallback for old browsers */
	background: -webkit-linear-gradient(right, #ffffff);
	background: -moz-linear-gradient(right, #ffffff);
	background: -o-linear-gradient(right, #ffffff);
	background: linear-gradient(to left, #ffffff);
	font-family: "Roboto", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;      
}

a {
	color: #ffffff;
}

#loginWait, #loginErrorMessage {
    display: none;
    text-align: center;
    padding-top: 20px;
}

#loginWait {
    background: url('/ajax.gif') center center no-repeat;
}

#loginErrorMessage {
    color: red;
}

.loginProgress #loginWait {
    display: block;
}

.loginProgress #loginErrorMessage {
    display: none;
}

.loginProgress #loginButton {
    opacity: 0.3;
    pointer-events: none
}

.loginError #loginErrorMessage {
    display: block;
}

