html, body {
	padding: 0;
	margin: 0;
	height: 100%;
	background: linear-gradient(180deg, rgba(0,0,0,1) 17%, rgba(0,0,0,0) 61%);
	background-size: cover;
	/*font-family: Verdana, Geneva, sans-serif;*/
  	font-family: Arial, Helvetica, sans-serif;
}
#LoginContainer{
	min-height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-self: center;
}
#LoginWindow{
	border-radius: 25px;
	display: flex;
	position: relative;
	align-self: center;
	flex-direction: column;
	background-color: white;
	width: 60%;
	min-width: 500px;
	max-width: 1000px;
	height: 700px;
	min-height: 700px;
}
#LoginImages{
	display: flex;
	justify-content: center;
	align-self: center;
}
#LoginWindow img{
	margin-top: 10px;
	max-height: 130px;
	max-width: 100%;
}
#LoginWindowInner{
	border-radius: 25px;
	position: absolute;
	bottom: 0px;
	display: flex;
	align-self: center;
	flex-direction: column;
	background-color: #121212;
	width: 100%;
	min-width: 500px;
	height: 80%;

}
#LoginHeader{
	color: white;
	text-align: center;
	align-self: center;
	width: 100%;
	margin: 0;
}
#LoginHeader h1{
	margin-top: 100px;
	font-size: 50px;
}
#LoginForm{
	color: white;
	align-self: center;
	text-align: center;
	width: 50%;
	height: 50%;
}
#LoginForm input[type="text"],input[type="password"]{
	width: 100%;
	text-align: center;
	border: none;
	border-radius: 25px;
	height: 40px;
	font-size: 20px;
	background-color: white;
	color: black;
}
#LoginForm input[type="submit"]{
	color: white;
	background-color: #FFB600;
	text-align: center;
	border: none;
	border-radius: 25px;
	width: 50%;
	height: 50px;
	font-size: 20px;
}
#LoginForm th{
	text-align: center;
}
#LoginForm td{
	
}
#LoginForm table{
	width: 100%;
}
#OWINVER{
	width: 50%;
	align-self: center;
	position: absolute;
	text-align: center;
	bottom: 0px;
	color: white;
}