@charset "utf-8";

body {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	margin: 0px;
	background-color: #FFFFFF;
	background-size: cover;
    background-position: center;
	background-repeat:no-repeat;
	background-attachment:fixed;
	text-align: left;
}

#headline{
	background-color:#FFFFFF;
	height:50px;
	margin-top: 0;
}

img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}
i {
	padding-right: 10px;
	height: 10px;
}

#logo{
	width:280px;
	height:70px;
	margin-top: 0;
}
#content_container{
	margin:auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}



.login_box{
	width: 450px;
	height: auto;
	border-radius: 1px;
	background:rgba(255,255,255, 0.8);
	padding: 30px 75px 10px;
	margin: auto auto 5px;
}


#logout_box{
	width: 450px;
	height: auto;
	border-radius: 1px;
	margin: auto;
	background:rgba(255,255,255, 0.8);
	padding: 20px;
}


#formG{
	grid-column: 1 / span 1;
}


#login_text{
	color: #9c9c9c;
	font-family: arial;
	font-size: 25px;
	line-height: 35px;
}

#form1{
	padding-top: 30px;
	width: 100%;
	row-gap: 10px;
}

.grid-container{
	display: grid;
	grid-template-columns: auto auto;
	column-gap: 25px;

}


.field {
	font-size:12px;
	color: #575757;
	clear: right;
	width: 250px;
}

input:-webkit-autofill {
    -webkit-box-shadow:0 0 0 50px white inset; /* Change the color to your own background color */
    -webkit-text-fill-color: #333;
}
 
input:-webkit-autofill:focus {
    -webkit-box-shadow: /*your box-shadow*/0 0 0 50px white inset;
    -webkit-text-fill-color: #333;
} 

input {
	border-radius:1px;
	width: 250px;
	border: none;
	height: 28px;
	padding-left: 8px;
}

input:-ms-input-placeholder {
    color: #999;
}

.button,#login_link{
	color: #FFFFFF;	

	font-family: arial;
	font-size: 15px;
	cursor:pointer;
	border: none;
  	/*background: -webkit-linear-gradient(#30B4DE, #1B7DC4); !* For Safari 5.1 to 6.0 *!*/
  	/*background: -o-linear-gradient(#30B4DE, #1B7DC4); !* For Opera 11.1 to 12.0 *!*/
  	/*background: -moz-linear-gradient(#30B4DE, #1B7DC4); !* For Firefox 3.6 to 15 *!*/
  	/*background: linear-gradient(#30B4DE, #1B7DC4); !* Standard syntax *!*/
  	background:  #269ad1;
  	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#30B4DE', endColorstr='#1B7DC4');/*For IE7-8-9*/
	text-align: left;
	padding-left: 10px;
}


.icon-prepend{
	color: #269ad1;
	display: inline;
	position: relative;
	left: 25px;
	top: 1px;
	width: 15px;
}

#namefield{
	grid-column: 1 / span 2;
}


#name, #password{
	height:35px;
}

#passfield{
	grid-column: 1 / span 1;
}

#loginBtn{
	width: 150px;
	height:35px;
	grid-column: 2 / span 1;
}

#loginBtn:hover {
	background: #2aa6e1;
	transform: scale(1.01);
}

#guestLoginBtn {
	width: 250px;
	height:35px;
	background: #9c9c9c;
}

#guestLoginBtn:hover {
	background: #adadad;
	transform: scale(1.01);
}

#kontaktBtn {
	background: none;
	border: none;
	color: #269ad1;
	padding: 0;
	text-decoration: underline;
	width: 150px;
	height:35px;
	font-size: 13px;
	font-weight: 600;
	cursor:pointer;
	grid-column: 2 / span 1;
}

#kontaktBtn:hover {
	transform: scale(1.04);
}

#error_header{
	color:#269ad1;
	font-weight:bold;
	font-family: arial;
	font-size: 24px;
	margin-bottom: 20px;
}

#login_header{
	color: #269ad1;
	font-family: arial;
	font-size: 30px;
	margin-bottom: 20px;
}


#logout_header{
	color:#269ad1;
	font-weight:bold;
	font-family: arial;
	font-size: 24px;
	margin-bottom: 20px;
}



#login_link{
	text-align: left;
	background-color: #269AD1;
	cursor:pointer;
	border: none;
	border-radius:1px;
	width: 250px;
	height: 40px;
	margin-top: 52px;
}

#login_link:hover{
	background: #2aa6e1;
	transform: scale(1.01);
}

#login_link > a{
	color: #FFFFFF;	
	display: block;
	font-size: 15px;
	height: 40px;
	padding-top: 10px;
	text-decoration: none;
	width: 250px;
	/*text-align: left;*/
}

