body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: #ccc;
}

.background-image {
	position: fixed;
	left: 0;
	right: 0;
	z-index: -1;
	margin: -20px 100px -40px -20px;
	
	display: block;
	background-image: url(images/login-bg1.jpg);
	filter: blur(20px);
	opacity: .85;
	
	width: 110%;
	height: 110%;
	background-size: cover;
}

#fullHeight {
	display: table;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

#divNoScript {
	display: table;
	height: 100%;
	position: absolute;
	overflow: hidden;
	width: 100%;
	
	opacity: 0.8;
	background-color: #ccc;
	top: 0px;
	left: 0px;
	z-index: 1000;
}

#divInsideNoScript {
	display: table-cell;
	vertical-align: middle;
	
	left: 0;
	width: 100%;
}

#divTextNoScript {
	background-color: #FFFFFF;
	font-size: 18px;
	font-weight: bold;
	width: 50%;
	margin: 0 auto;
	padding: 20px;
	text-align: center;
	border-radius: 5px;
	box-shadow: 5px 5px 5px grey;
}

h1 {
	margin-top: 0px;
}

#login {
	display: table-cell;
	vertical-align: middle;
}

#loginContainer {
	/* box-shadow: 5px 5px 5px grey; */
	margin: auto;
	max-width: 600px;
	background-color: #fff;
	border-radius: 5px;
	z-index: 100;
}

#loginHeader {
	background-color: #1e5fa5;
	border-radius: 5px 5px 0px 0px;
	padding: 20px 20px 1px;
	color: white;
}

#loginContent {
	padding: 20px;
}

.loginButton2 {
	background-color: #1ace1a;
	color: white;
	border: none;
	cursor: pointer;
	padding: 10px;
	width: 200px;
}

.loginButton {
	background-color: #1ace1a;
	color: white;
	border: solid;
	border-width: 1px;
	border-color: #3ec03e;
	cursor: pointer;
	padding: 10px;
	box-shadow: 2px 2px 2px grey;
	width: 200px;
}

.disabledButton {
	background-color: #DDDDDD;
	color: white;
	disabled: true;
	border: solid;
	border-width: 1px;
	border-color: #DDDDDD;
}

.loginButton:hover {
	opacity: 0.8;
}

input[type=text], input[type=password] {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

#forgotPassword {
	float: right;
	padding-top: 10px;
}

.loginError, .forgotError {
	color: red;
	padding: 10px;
	padding-left: 0px;
}

@media screen and (max-width: 420px) {
	#login {
		width: 100%;
	}
	#loginButton {
		width: 100%;
	}
	#forgotPassword {
		display: block;
		float: none;
	}	
}

@media screen and (max-width: 700px) {
	.background-image {
		background-image: url(images/login-bg2.jpg);
		filter: blur(20px);
	}
}

#forgot {
	display: none;
}

#forgotContent, #resetSuccessContent {
	padding: 20px;
	border-top: 1px solid #ddd;
}