/******************************************************************

Stylesheet: Login Stylesheet

This stylesheet is loaded is only on the login page. This way you can style
the login page. It won't affect any other page, admin or front-end.

Make sure functions/login.php is activated in your functions.php file.

This stylesheet is turned off by default.

For more info, check out the codex:
http://codex.wordpress.org/Creating_Admin_Themes

******************************************************************/
div#login {
  border-radius: 0;
  padding-bottom: 0;
}

div#login h1 {
  color: #AD7B61;
  font-family: "GenesisSansHead", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
}

div#login label {
  font-family: "GenesisSansText", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

div#login input {
  border-radius: 0;
  font-family: "GenesisSansText", Helvetica, Arial, sans-serif;
}

div#login input[type=text],
div#login input[type=password] {
  padding: 5px 10px;
  color: #111111;
}

div#login-footer {
  width: 400px;
  margin: 0 auto;
  padding: 0 0 30px 0;
  text-align: center;
  color: #996449;
  font-weight: 600;
  background: #111111;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

div#login-footer span.separator {
  margin: 0 10px;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  div#login-footer {
    width: 300px;
  }

  div#login-footer span.separator {
    display: none;
  }

  div#login-footer a {
    display: block;
    line-height: 200%;
  }
}
div#login-footer a {
  text-decoration: none;
  color: #AD7B61;
}

div#login-footer a:hover {
  color: #FFFFFF;
}

#loginform {
  min-height: auto !important;
}

.wp-core-ui #login .button-primary {
  font-size: 1.125rem !important;
  padding: 12px 20px !important;
}
