/*

Stylesheet: Login Stylesheet

*/

html, body {
  background: #fff;
  background: #F2F3F4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#login {
  padding-top: 15%;
}

.login h1 a {
  display: block; 
  width: 250px;
  height: 60px;
  overflow: hidden;
  background: url(../assets/images/GNEC-logo.svg) no-repeat top center;
  border-radius: 0;
  text-indent: -9999px;
}

.login form {
  background: #fff;
  border: 1px solid #E4EDF6;
  border-radius: 3px;
  padding: 26px 24px 26px;
  -webkit-box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.05);
}

#loginform, 
.login #login_error, 
.login .message {
  background: #fff;
}

.login label {
  color: #373D45;
  font-weight: 600;
}

.login form .forgetmenot label {
  font-weight: normal;
  color: #555;
  text-transform: none;
}

.login #login_error a, 
.login #backtoblog a, 
.login #nav a {
  color: #08406F;
}

.login #login_error a:hover, 
.login #backtoblog a:hover, 
.login #nav a:hover {
  text-decoration: none;
  color: #1983AB;
}

.login form .input, .login input[type=text] {
  padding: 8px;
  margin: 7px 6px 16px 0;

  background: #F2F3F4;
  border: none;
  /*border-bottom: 1px solid #E6E6E6;*/
  box-shadow: none;
  -webkit-box-shadow: none;
  
  font-size: 15px;
  font-weight: normal;
  color: #000;
  transition: all 0.3s;
}

.login input[type=text]:focus {
  border-color: #6C9ACF;
}

input[type=checkbox]:checked:before {
  color: #6C9ACF;
}

input[type=text]:focus, input[type=search]:focus, input[type=radio]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, input[type=password]:focus, input[type=checkbox]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, select:focus, textarea:focus {
  border-color: #6C9ACF;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#login input[type="submit"] {
  height: auto;
  padding: 11px 40px;

  border: none;
  background: #139ECB;
  border-radius: 3px;
  box-shadow: none;

  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  text-shadow: none;

  transition: all 0.3s;
}

#login input[type="submit"]:hover {
  background: #08406F;
  color: #fff;
  border: none;
}

