body {
	margin: 0;
	background-color: #f1f1f1;
	background-image: url(../images/lock-screen-bg.jpg);
	background-size: cover;
	padding: 0;
}
#Overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}
#Form {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 370px;
	padding: 50px 30px;
	border-radius: 3px;
	background: #FFFFFF;
	z-index: 2;
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
#FormHeader {
	margin: 0;
	text-align: center;
	font-size: 25px;
	color: #2196F3;
	font-weight: normal;
}
#FormLogo {
	width: 110px;
	margin: 20px auto 0px auto;
	display: block;
	border-radius: 50%;
	border: 1px solid #007ab9;
	padding: 4px;
}
#PasswordWrap {
	margin: 30px 0px 0px 0px;
	position: relative;
}
#Password {
	outline: 0;
	padding: 0px;
	border: none;
	background: transparent;
	width: 100%;
	height: 35px;
	font-size: 16px;
	border-bottom: 1px solid #CCCCCC;
}
#PasswordLine {
	height: 2px;
	background: #2196f3;
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 0%;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
#PasswordWrap.active #PasswordLine {
	width: 100%;
}
#FormSubmit {
	background: #2196f3;
	text-align: center;
	color: #fff;
	font-weight: bold;
	height: 40px;
	line-height: 40px;
	text-shadow: 1px 1px 1px #414141;
	font-size: 18px;
	width: 120px;
	border-radius: 2px;
	display: block;
	margin: 20px auto 0px auto;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
	cursor: pointer;
}
#FormSubmit:hover {
	background: #0078d8;
}
