@font-face {
	font-family: HelveticaNeue;
	font-style: normal;
	font-weight: normal;
	src: url('../vault/fonts/HelveticaNeue/otf/HelveticaNeue-Light.otf') format('opentype'),
		 url('../vault/fonts/HelveticaNeue/woff/HelveticaNeue-Light.woff') format('woff');
}
@font-face {
	font-family: HelveticaNeue;
	font-style: normal;
	font-weight: bold;
	src: url('../vault/fonts/HelveticaNeue/otf/HelveticaNeue-Bold.otf') format('opentype'),
		 url('../vault/fonts/HelveticaNeue/woff/HelveticaNeue-Bold.woff') format('woff');
}

* {
	/*box-sizing: border-box;*/
	position: relative;
	margin:0 auto;
	/*padding:0;*/
	border:none;
	font-family: HelveticaNeue;
	font-size: 14px;
	/*-webkit-user-select:none;*/
	/*-ms-touch-action: none;*/
	color: #324549;
}

body {
	background: #d9d9d9;
	background: -moz-linear-gradient(top, #d9d9d9 0%, #ffffff 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d9d9d9), color-stop(100%,#ffffff));
	background: -webkit-linear-gradient(top, #d9d9d9 0%,#ffffff 100%);
	background: -o-linear-gradient(top, #d9d9d9 0%,#ffffff 100%);
	background: -ms-linear-gradient(top, #d9d9d9 0%,#ffffff 100%);
	background: linear-gradient(to bottom, #d9d9d9 0%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9d9d9', endColorstr='#ffffff',GradientType=0 );
	background-size: cover;
	overflow: hidden;
}

.animate {
	-moz-transition: 	all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: 		all .3s ease-in-out;
	transition: 		all .3s ease-in-out;
}
input {
	margin-top: 20px;
}
ol {
	padding-left: 20px;
}
textarea,
select,
input:not([type=checkbox]) {
	height: 32px;
	padding: 0 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	width: 230px;
	display: inline-block;
	padding-left: 10px;
	background-color: #f7f7f7;
	-webkit-user-select:text;
	-moz-user-select:text;
	-ms-user-select:text;
	user-select:text;
	border: 1px solid #CFCFCF;
	border-radius: 0;
}
input[type=submit] {
	border: outset 1px #214ab7;
	box-shadow: 0px 1px 2px rgba(0,0,0,.7);
	color: #FFF;
	cursor: pointer;
	padding: 0 10px;
	background: #4867b5; /* Old browsers */
	background: -moz-linear-gradient(top,  #4867b5 1%, #214ab7 50%, #1d389b 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#4867b5), color-stop(50%,#214ab7), color-stop(100%,#1d389b)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #4867b5 1%,#214ab7 50%,#1d389b 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #4867b5 1%,#214ab7 50%,#1d389b 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #4867b5 1%,#214ab7 50%,#1d389b 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #4867b5 1%,#214ab7 50%,#1d389b 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4867b5', endColorstr='#1d389b',GradientType=0 ); /* IE6-9 */
	outline: none;
	vertical-align: top;
}
.valid {
	background: #fff url('../vault/images/check-icon.png') no-repeat right center;
	background-size: 7%;
	background-position-x: 97%;
}

input.invalid,
.invalid {
	background: #fff url('../vault/images/x-icon.png') no-repeat right center;
	background-size: 7%;
	background-position-x: 97%;
	border:solid 2px red;
}
.error {
	margin: 0 auto;
	color: #F00;
	text-align: center;
}
.success {
	color: green;
}
#password {
    background-position-x: 85%;
}
#login {
	top: 30%;
}
#login_content {
	width: 601px;
	height: 300px;
	background: #F1F1F1;
	//overflow: hidden;
}
#header {
	width: 100%;
	height: 75px;
	position: absolute;
	left: 0;
	top: -75px;
	white-space: nowrap;
}
#header > #hme_logo {
	background: url('../vault/images/JTECH-website-logo-retina.png') no-repeat center center;
	background-size: 100px;
	height: 100%;
	width: 135px;
	display: block;
	float: left;
}
#header > #hme_app_name {
	color: #214668;
	font-size: 40px;
	white-space: nowrap;
	margin-top: 10px;
	height: 100%;
	line-height: 70px;
}
.headerDiv {
	border-bottom: 1px solid #848f91;
	margin: 0 auto 5px auto;
	text-align: left;
	font-size: 21px;
}
.leftDiv, .rightDiv {
	padding: 20px 30px 20px 30px;
	width: 240px;
	height: 260px;
	background: #F1F1F1;
}
.leftDiv {
	float: left;
	position: absolute;
	left: 0;
}
.rightDiv {
	float: right;
	border-left: 1px solid #8F8F8F;
	z-index: 99;
	position: absolute;
	right: 0;
}
.centerDiv {
	width: 100%;
	box-sizing: border-box;
	padding: 20px 30px 20px 30px;
}
.button {
	background: #214668;
	width: 100%;
	height: 36px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	text-align: center;
	border-top: 1px solid #8F8F8F;
	color: #FFF;
	font-size: 21px;
	padding-top: 8px;
	cursor: pointer;
	-moz-appearance: none;
	-ms-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	z-index: 100;
}
.button:hover {
	color: #000;
}

.forgot_password_form {
	z-index: 1;
	position: absolute;
	right: 0;
	width: 290px;
	display: inline;
	background: #F1F1F1;
	margin-right: 1px;
	height: 235px;
	box-sizing: border-box;
	padding: 20px 30px 0 20px;
	
}
#hideChangePassword {
	display: inline;
	right: 0;
	bottom: 40%;
	cursor: pointer;
	font-size: 20px;
	position: absolute;
	top: 200px;
	left: 20px;
}
#hideChangePassword:hover {
	color: #214668;
}
/* Register new user */
#registration {
	height: 490px;
	width: 556px;
	margin: -200px 0 0 -350px;
	font-size: 13px; 
	color: #787878;
	left: -100%;
	z-index: 99;
	background: #F1F1F1;
	padding: 20px 30px 20px 30px;
	text-align: center;
}
#registration input,
#registration select {
	width: 256px;
	height: 32px;
	margin: 5px 10px; 
	font-size: 16px;
	color: #696969;
	background-size: 17px;
	box-sizing: border-box;
	text-align: left;

}
#registration span,
#registration span a {
	font-size: 14px;
}
#registration span a {
	text-decoration: underline;
	cursor: pointer;
}

#registration select {
	background: #f7f7f7 url('../vault/images/little_down_arrow_black.png') no-repeat right 9px center;

}
#registration select.changed {
	color: #696969;
}
#registration input[name=username],
#registration input[type=password] {
	width: 162px;
}
#registration input[type=checkbox] {
	width: auto;
	margin-right: 5px;
	margin-left: 35px;
	vertical-align: middle;
}
#registration #terms {
	width: 100%;
	background: #fff;
	height: 0px;
	position: absolute;
	bottom: 45px;
	left: 0;
	z-index: 5;
	-webkit-transition: height .5s;
	-moz-transition: height .5s;
	-ms-transition: height .5s;
	transition: height .5s;
	overflow: hidden;
	text-align: center;
	box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3);
}
#registration .close {
	font-size: 26px;
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 30px;
	z-index: 3;
}
#registration #terms > div:last-child {
	overflow: auto;
	width: 613px;
	height: 430px;
	margin: 0 auto;
	text-align: left;
	font-size: 12px;
	margin-top: 60px;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
}
#registration #terms > div:last-child p{
	font-size: 12px;
}

#terms p {
	text-indent: 30px;
}
/***********************/
/* Toggle Slider Stuph */
/***********************/
.toggleSwitch {
	height: 22px;
	background: #d5d5d5;
	border-radius: 50%/100%;
	-webkit-transition: background .25s;
	-moz-transition: background .25s;
	-ms-transition: background .25s;
	transition: background .25s;
	cursor: pointer;
	position: relative;
	width: 40px;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select: none;
	user-select: none;

}
.toggleSwitch > .knob {
  position: absolute;
  top:1px;
  left:1px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #fff;
  background-size: 14px;
  -webkit-transition: left .25s;
  -moz-transition: left .25s;
  -ms-transition: left .25s;
  transition: left .25s;
}

.toggleSwitch.on {
  background: #8DC63F;
}
.toggleSwitch.on > .knob {
  left: 19px;
}
.toggleSwitch {
	float: left;
}
#termsAccept {
    width: 274px;
    display: inline-block;
    box-sizing: border-box;
    padding-left: 10px;
    margin-bottom: 20px;
}
#forgot_password_link {
	border-radius: 999px;
	border: 1px solid #CFCFCF;
	bottom: 24px;
	padding: 0 5px;
	right: 5px;
	bottom: -1px;
	position: absolute;
	cursor: pointer;
}
#forgot_password_link:hover {
	color: #214668;
	border-color: #214668;
	box-shadow: 0 0 4px #214668;
	
}
.forgot_password_form #email {
	background-position-x: 95%;
	width: 186px;
	background-size: 17px;
	position: absolute;
	top: 136px;
}
#send_email {
	position: absolute;
	right: 40px;
	height: 32px;
	bottom: 47px;
	background: #214668;
	color: #FFF;
	cursor: pointer;
}
#send_email:hover {
	color: #000;
}
.hidden_checkbox {
	display: none;
}
#remember_me {
	top: 30px;
}
#rememberme_text {
	left: 10px;
	top: 2px;
}
#termsNote {
	margin-left: 30px;
}
#new_login {
	top: 6px;
}
.red_bg {
	background: #F00;
}
.change_password_form {
    height: 200px;
    top: 9px;
}
.change_password_form > input {
    display: block;
}
.change_password_form .error {
	position: absolute;
	top: 1px;
	left: 30%;
}
.change_password_form .error.success {
	left: 0;
}
