html {
	background: url(../images/loginBg.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
body {
	font-family: 'Muli', sans-serif;
	font-size: 14px;
	margin: 0;
	padding: 0;
	overflow-y: hidden;
}
input:focus {
	outline: none;
}
.loginBx {
	width: 400px;
	background: #fff;
	position: absolute;
	left: 0px;
	top: 0;
	right: 0;
	bottom: 0px;
	height: 500px;
	margin: auto;
	border: 1px solid #c1c8d1;
	box-shadow: 0px 10px 15px #94a4a7;
}
.logorow {
	margin-top: 75px;
	text-align: center;
}
.loginBx h1 {
	margin: 0px;
	font-size: 20px;
	text-align: center;
	margin-bottom: 30px;
	margin-top: 50px;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
}
.loginBx h1 span {
	font-size: 13px;
	display: block;
	font-family: muli;
	font-weight: normal;
	color: #5c5c5c;
	margin-top: 5px;
}
.loginInput {
	width: 290px;
	margin: 0px auto 10px;
}
.loginInput input {
	width: 290px;
	height: 45px;
	border-radius: 3px;
	border: 1px solid #ccc;
	font-size: 15px;
	font-family: Muli;
	font-weight: 300;
	padding: 0 15px;
}
.loginPassword {
	width: 290px;
	margin: 0px auto 10px;
}
.loginPassword input {
	width: 290px;
	height: 45px;
	border-radius: 3px;
	border: 1px solid #ccc;
	font-size: 15px;
	font-family: Muli;
	font-weight: 300;
	padding: 0 15px;
	line-height: 50px;
}
.loginBtn {
	width: 290px;
	margin: 0px auto 10px;
}
.loginBtn input.submitBtn {
	width: 290px;
	height: 50px;
	font-weight: 400;
	line-height: 40px;
	border-radius: 3px;
	cursor: pointer;
	border: none;
	font-size: 15px;
	background: #0047b9;
	color: #fff;
	text-transform: uppercase;
	margin-top: 5px;
}
.forgotPs {
	width: 290px;
	margin: 25px auto 10px;
	text-align: center;
}
.forgotPs a {
	text-align: center;
	font-size: 13px;
	font-weight: 300;
	color: #3769a7;
}
.forgotPs a:hover {
	text-decoration: none;
	color: #000;
}
.copyright {
	position: absolute;
	bottom: 15px;
	width: 100%;
	text-align: center;
	font-size: 13px;
	color: #333;
	font-weight: 400;
	padding-bottom: 10px;
}
.loginBtn input.forgotPasswordBt {
	width: 292px;
	height: 50px;
	font-weight: 400;
	line-height: 40px;
	border-radius: 3px;
	cursor: pointer;
	border: none;
	font-size: 15px;
	background: #e6964f;
	color: #fff;
	text-transform: uppercase;
	margin-top: 5px;
}
.loginInput input.error,
.loginPassword input.error {
	border: 1px solid #ff0000;
}
@media only screen and (max-width: 768px) {
	.loginBx {
		width: 330px;
	}
}