@font-face {
  font-family: 'open_sansregular';
  src: url('/css/fonts/OpenSans-Regular-webfont.eot');
  src: url('/css/fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'), url('/css/fonts/OpenSans-Regular-webfont.woff') format('woff'), url('/css/fonts/OpenSans-Regular-webfont.ttf') format('truetype'), url('/css/fonts/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'open_sanslight';
  src: url('/css/fonts/OpenSans-Light-webfont.eot');
  src: url('/css/fonts/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'), url('/css/fonts/OpenSans-Light-webfont.woff') format('woff'), url('/css/fonts/OpenSans-Light-webfont.ttf') format('truetype'), url('/css/fonts/OpenSans-Light-webfont.svg#open_sanslight') format('svg');
  font-weight: normal;
  font-style: normal;
}
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: 'open_sansregular';
  background: url(/images/bg.jpg) top center;
  background-size: cover;
}
div.index-box {
  background: #f9f9f9;
  max-width: 376px;
  width: 100%;
  padding: 37px 60px 13px 60px;
  margin: 145px auto;
  text-align: center;
  -webkit-box-shadow: 0px 0px 1px 0px #323232;
  -moz-box-shadow: 0px 0px 1px 0px #323232;
  box-shadow: 0px 0px 1px 0px #323232;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
div.index-box p {
  color: #aeaeae;
  font-size: 13px;
  text-align: left;
  line-height: 20px;
  width: 93%;
  margin: 0 auto 16px;
}
div.index-box p.underline {
  text-decoration: underline;
  text-align: center;
}
div.index-box img.logo {
  position: relative;
  margin-bottom: 20px;
  left: -18px;
}
div.index-box span.hint {
  color: #aeaeae;
  text-decoration: underline;
  font-size: 13px;
}
div.index-box form {
  margin-bottom: 15px;
}
div.index-box form div {
  background: #ececec;
  padding-bottom: 1px;
  width: 256px;
  padding: 4px 0 3px;
  margin-bottom: 16px;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
div.index-box form div input {
  height: 52px;
  max-width: 248px;
  width: 100%;
  border: 1px solid #d9d9d9;
  font-family: 'open_sansregular';
  color: #d6d6d6;
  font-size: 20.11px;
  padding: 0 45px 0 17px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
div.index-box form div span {
  position: absolute;
  display: inline-block;
  background: url(/images/inputControls.png) no-repeat;
  height: 19px;
  width: 19px;
  right: 20px;
  top: 20px;
}
div.index-box form div.active {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: #8dc63f;
}
div.index-box form div.active input {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 0;
  color: #8dc63f;
}
div.index-box form div.active span {
  background: url(/images/inputControls.png) no-repeat;
  background-position: 0 -19px;
}
div.index-box form input[type=submit] {
  border: 0;
  color: white;
  font-size: 17px;
  font-family: 'open_sanslight';
  cursor: pointer;
  padding: 15px 84px;
  max-width: 255px;
}
div.index-box form#loginForm {
  margin-top: 15px;
}
div.index-box form#loginForm input[type=submit], div.index-box form#recover_password_form input[type=submit] {
  background: #8dc63f;
}
div.index-box form#getPassForm input[type=submit] {
  background: #e40559;
  margin-top: 8px;
}
div.index-box a {
  color: #aeaeae;
  font-size: 12px;
  text-decoration: none;
}
div.index-box a span {
  font-weight: bold;
}
div.index-box span.footer {
  display: block;
  color: #aeaeae;
  font-size: 12px;
  font-family: 'open_sanslight';
  margin-top: 15px;
}

form p.validation_error {
	color: white !important;
	font-weight: bold;
	width: 90%;
	margin: 12px auto;
	background: darkred;
	padding: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	position: relative;
}
form p.validation_error:after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 5px 0 5px;
	border-color: darkred transparent transparent transparent;
	content: ' ';
	position: absolute;
	left: 10px;
	bottom: -5px;
}