@font-face {
	font-family: "NeoSansProRegular";
	src: url("/css/fonts/NeoSansProRegular/NeoSansProRegular.eot");
	src: url("/css/fonts/NeoSansProRegular/NeoSansProRegular.eot?#iefix") format("embedded-opentype"),
	url("/css/fonts/NeoSansProRegular/NeoSansProRegular.woff") format("woff"),
	url("/css/fonts/NeoSansProRegular/NeoSansProRegular.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
}

@font-face {
	font-family: "NeoSansProBold";
	src: url("/css/fonts/NeoSansProBold/NeoSansProBold.eot");
	src: url("/css/fonts/NeoSansProBold/NeoSansProBold.eot?#iefix") format("embedded-opentype"),
	url("/css/fonts/NeoSansProBold/NeoSansProBold.woff") format("woff"),
	url("/css/fonts/NeoSansProBold/NeoSansProBold.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
}

#bg {
	/* background-image: url('/css/images/background.jpg'); */
	background: rgb(0,75,210);
	background: -moz-linear-gradient(0deg, rgba(0,75,210,1) 0%, rgba(41,151,233,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(0,75,210,1) 0%, rgba(41,151,233,1) 100%);
	background: linear-gradient(0deg, rgba(0,75,210,1) 0%, rgba(41,151,233,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#004bd2",endColorstr="#2997e9",GradientType=1);
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;}
body {
	font-family: 'NeoSansProRegular', sans-serif;
	-webkit-font-smoothing:antialiased;
	color: #4A4A4A;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	overflow: hidden;
	margin: 0;
	padding: 0;}

form {
	width: 350px;
	position: relative;}
form .form-field::before {
	font-size: 20px;
	position: absolute;
	left: 15px;
	top: 17px;
	color: #888888;
	content: " ";
	display: block;
	background-size: cover;
	background-repeat: no-repeat;}
form .form-field:nth-child(2)::before {
	background-image: url('/css/images/user-icon.png');
	width: 20px;
	height: 20px;
	top: 15px;}
form .form-field:nth-child(3)::before {
	background-image: url('/css/images/lock-icon.png');
	width: 16px;
	height: 16px;}
form .form-field {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 1rem;
	position: relative;}
form input {
	font-family: inherit;
	width: 100%;
	outline: none;
	background-color: #fff;
	border-radius: 4px;
	border: none;
	display: block;
	padding: 0.9rem 0.7rem;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	font-size: 17px;
	color: #4A4A4A;
	text-indent: 40px;}
form .btn {
	font-family: 'NeoSansProRegular', sans-serif;
	-webkit-font-smoothing:antialiased;
	outline: none;
	border: none;
	cursor: pointer;
	display: inline-block;
	margin: 0 auto;
	padding: 0.9rem 2.5rem;
	text-align: center;
	background-color: #47AB11;
	color: #fff;
	border-radius: 4px;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	font-size: 17px;

	-webkit-transition: background-color 0.5s ease-out;
	-moz-transition: background-color 0.5s ease-out;
	-o-transition: background-color 0.5s ease-out;
	transition: background-color 0.5s ease-out;}
form .btn:hover{
	background-color:#35850a;}
form .center{
	text-align:center;
	margin:4px 0;}
form .errors{
	font-family: 'NeoSansProBold', sans-serif;
	-webkit-font-smoothing:antialiased;
	text-align:center;
	color:#fff;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.85);}
.form_border_red{
	border:1px solid red;}