
/*------------------------------------------------------------------

[Login/Signup Stylesheet]

  Project:    Base Admin
  Version:    1.0
  Last change:  05/21/2012
  Assigned to:  Rod Howard (rh)

-------------------------------------------------------------------*/

/** Base Body Styles **/
body{ color:#838383; font: 13px/1.7em 'Open Sans';}


.account-container {
  width: 490px;
  display: block;
  margin: 60px auto 0 auto;
  background: #f9f9f9;
  border: 1px solid #d5d5d5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.login-action {
  float: right;
  margin-top: 18px;
}

.content {
  padding: 16px 28px 23px;
}

.login-fields .field {
  position: relative;
  margin-bottom: 1.25em;
}

.login-fields label {
  display: none;
}

.login-fields input {
  font-family: 'Open Sans';
  font-size: 13px;
  color: #8e8d8d;
  padding: 11px 15px 10px 50px;
  background-color: #fdfdfd;
  width: 100%;
  display: block;
  margin: 0;
  box-shadow: inset 2px 2px 4px #f1f1f1;
  height: 40px;
}

.login-fields .field:after {
  content: '';
  display: block;
  width: 39px;
  height: 38px;
  position: absolute;
  top: 1px;
  left: 1px;
  border-radius: 6px 0 0 6px;
}

.login-fields .field.has-error:after {
  opacity: 0.8;
}

.username-field:after { background: url('../../img/signin/user.png') no-repeat; }

.password-field:after { background: url('../../img/signin/password.png') no-repeat; }

.username-field.has-error:after { background: url('../../img/signin/user_error.png') no-repeat; }

.password-field.has-error:after { background: url('../../img/signin/password_error.png') no-repeat; }

.login-actions {
  float: left;
  width: 100%;
  margin-top: -1em;
  margin-bottom: 1.25em;
}

span.login-checkbox {
  float: left;
  margin-top: 31px;
}

span.login-checkbox > input[type='checkbox'] {
  opacity: 0;
  float: left;
  width: 15px;
}

span.login-checkbox > input[type='checkbox'] + label {
   clear: none;
  height: 15px; 
  display: block;
  padding: 0 0 0 22px;
  margin: 0;
  font-size: 12px;
  line-height: 1.2em;
  background: url(../../img/signin/check.png) no-repeat 0 0;
  cursor: pointer;
}

span.login-checkbox > input[type='checkbox']:checked + label {
  background-position: 0 -15px;
}

/** Text Under Box**/
.login-extra {
  display: block;
  width: 300px;
  margin: 1.5em auto;
  text-align: center;
  line-height: 19px;
  text-shadow: 1px 1px 0px #fff;
}

.account-container h1 {
  margin-bottom: .4em;
  color: #f90;
  font-size: 32px;
}

.register .login-actions {
  margin-bottom: 0;
}

.register .login-fields input {
  width: 299px;
  padding-left: 6px;
}

.register h1 {
  color: #444;
}

.register span.login-checkbox {
  position: relative;
  top: -6px;
  width: 200px;
}

.register span.login-checkbox > input[type="checkbox"] + label {
  position: relative;
  line-height: 1.3em;
}

@media (max-width: 480px) {
  .account-container {
    width: auto;
    margin-top: 35px;
  }
  .twitter {
    display: block;
    margin-bottom: 1em;
  }
  .register .login-fields input {
    width: 204px;
    padding-left: 6px;
  }
}