/******************************************************************
Site Name:
Author:

Stylesheet: Login Stylesheet

This stylesheet is loaded (if admin.php is setup in your
functions file) on the login page. This way you can style
the login page. It won't affect any other page, admin or front-end.

For more info, check out the codex:
http://codex.wordpress.org/Creating_Admin_Themes

******************************************************************/
/* line 17, ../scss/login.scss */
body.login {
  background: #f6f3e9;
}

/* the form box */
/*
This is the Wordpress logo in the admin area.
You'll have to load your own images and mess
with the width and height.
*/
/* line 29, ../scss/login.scss */
.login h1 {
  margin-bottom: 25px;
}
/* line 31, ../scss/login.scss */
.login h1 a {
  background: url(../images/logo.png) no-repeat top center;
  /* make sure to replace this! */
  width: 326px;
  height: 67px;
  text-indent: -9999px;
  overflow: hidden;
  padding-bottom: 15px;
  display: block;
}

/* line 42, ../scss/login.scss */
#loginform {
  margin-left: 8px;
  padding: 26px 24px 46px;
  font-weight: normal;
  background-color: #b36b00;
  border: 1px solid #666666;
  border-radius: 3px;
  box-shadow: none;
}
/* line 51, ../scss/login.scss */
#loginform label {
  color: #FFFFFF;
}

/* line 56, ../scss/login.scss */
body form .input {
  font-family: "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;
  font-weight: 200;
  font-size: 24px;
  width: 97%;
  padding: 3px;
  margin-top: 2px;
  margin-right: 6px;
  margin-bottom: 16px;
  border: 1px solid #e5e5e5;
  background: #FBFBFB;
  outline: none;
  box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
}

/*
You'll have to override some of the default styles
but since we're referencing the id, it should be easy.
*/
/* line 76, ../scss/login.scss */
#wp-submit {
  background: #2ca1a1;
}

/* login button*/
