/* ============================================== */
/* Login
/* ============================================== */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html{
	margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
	height: 100%;
	background:#17547e;
	overflow:hidden;
}	

body{
	margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
	font-family: "Graphik Web", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #333;
  line-height: 1.6;
  min-width: 1016px;
  overflow: hidden;
	background-color: #17547e;
  background-image: -webkit-radial-gradient(#17547e, #0f3753);
  background-image: radial-gradient( #17547e, #0f3753);
  height: 100%;
}

.dino{
	width:100%;
	height:100%;
	opacity:0;
	background: url("dino.svg") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.dino.show{
	opacity:0.04;
}

.login-wrapper{
	height: 400px;
  width: 600px;
  position: absolute;
  top: 45%;
  left: 50%;
  margin: -200px 0 0 -300px;
  font-size: 12px;
  color: white;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.login-logo {
  text-indent: -9999em;
  white-space: nowrap;
  overflow: hidden;
  height: 56px;
  background: url("logo-login.svg") 50% 50% no-repeat;
  margin-bottom: 30px;
}

.login-form {
  width: 300px;
  margin: 0 auto;
  letter-spacing:0.02rem;
}

.login-form-group {
  display: block;
  margin: 14px auto;
  text-align: left;
  position: relative;
}

input.login-input {
  display: block;
  width: 100%;
  height: 32px;
  padding: 10px;
  font-size: 12px;
  border: none;
  outline: none;
  background: #396d91;
  color: white;
}

.login-label {
  color: #a2d5ee;
  z-index: 3;
  pointer-events: none;
  font-size: 12px;
  line-height: 12px;
  position: absolute;
  top: 11px;
  left: -70px;
}

.login-error  {
	position:relative;
	top:-0.8rem;
  display: block;
  width: 100%;
  color: #e79f7a;
  z-index: 3;
  font-size: 1.2rem;
  line-height: 1.4;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.login-error a{
	display:inline-block;
	color: #e79f7a;
	font-weight:normal;
}

.login-error.show {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.login-btn {
  display: block;
  width: 100%;
  height: 32px;
  margin: 14px auto;
  color: white;
  background: #59a0c7;
  border: none;
  border-radius: 3px;
  outline: none;
  text-align: center;
  line-height: 29px;
  font-family: "Graphik Web", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  outline:0;
  -webkit-appearance: none;
}

.login-options, .login-options a{
  margin: 0.9rem auto;
  color: #a2d5ee;
  font-weight:normal;
  outline:0;
}

.login-options-left {
  float: left;
}

input[type="checkbox"]{
	margin-right:5px;
}

.login-options-right {
  float: right;
}

.login-options:after {
  content: "";
  display: table;
  clear: both;
}

.login-help, .login-help a{
  margin-top: 40px;
  color: #59a0c7;
  text-align: center;
  font-weight:normal;
  outline:0;
}

input[type="password"]{
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;}
/* ============================================== */
/* Media Queries 
/* ============================================== */
@media all and (max-width: 450px) { 
.login-label {
  position: initial;
  margin-bottom:.3rem;
}

/* ============================================== */
/* Less than or equal to IE8 message
/* ============================================== */

.lteie8-message {
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	text-align: justify
}

.lteie8-message a {color: #a2d5ee}
