html { 
  height: 100%;
  background: url('/images/background.jpg');
}

* { 
  margin: 0;
  padding: 0;
}

/* tell the browser to render HTML 5 elements as block */
article, aside, figure, footer, header, hgroup, nav, section { 
  display:block;
}

body { 
  font: normal .80em arial, sans-serif;
  background: rgba(255,255,255,0.65);
  color: #444;
  height:100%;
}

p { 
  padding: 0 0 20px 0;
  line-height: 1.7em;
}

img { 
  border: 1px solid black;
  background: rgba(255,255,255,1);
  border-radius: 15px;
}


.topbanner {
	text-align: center;
	padding: 1em;
	font-weight:bold;
	font-size:3em;
}

.loginform {
	display:block;
	background-color:white;
	color:black;
	border: 2px solid black;
	border-radius: 15px;
	padding:30px;
	margin: 20px auto;
	width: 30%;
	font-size:1.3em;
	min-height:8em;
}

.formheader {
	color: grey;
	font-weight:bold;
	padding-bottom:.7em;
}

.lfinput {
	position: relative;
	width:100%;
	margin-bottom:.5em;
}
.lfinput input {
	position: relative;
	height:1.5em;
	border-radius:.2em;
	width: 18em;
}

.lfilabel {
	display:inline-block;
	width:5.5em;
}

#lfsubmit {
	display:inline-block;
	font-size:1.2em;
	padding:.2em;
	border-radius:.2em;
	width:4em;
	float:right;
}

#lfsubmit:hover {
	background-color:darkgrey;
	cursor:pointer;
	color:white;
}

#Capslock_Warning {
	display: block;
	position: absolute;
	top: 1.4em;
	left: 7em;
	color: red;
	padding: 4px;
	border: 1px solid red;
	width: 10em;
	background-color: white;
	box-shadow: 2px 2px 2px gray;
	border-radius: 3px;
}



@media(max-width:1000px) {

	.loginform {
		width: 80%;
	}
	.bannerimg img {
		width:80%;
	}
	.lfinput {
	}
	.lfinput input {
		width: 50%;
	}

	.lfilabel {
		width:40%;
	}

}
