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

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/admin.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

******************************************************************/
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent; }

body {
  font: 300 120% / 1.5em 'neuzeit-grotesk', "Helvetica Neue", Arial, sans-serif;
  color: #fcfcfc !important;
  background: #ffffff; }

@keyframes bgfade {
  0% {
    background: #2d9; }
  20% {
    background: #1498E0; }
  40% {
    background: #942DE2; }
  80% {
    background: #F14765; }
  100% {
    background: #2d9; } }

#loginform {
  background: transparent;
  box-shadow: none; }
  #loginform label {
    color: #6F6F6E;
    font-weight: 400;
    letter-spacing: .03em;
    margin-top: 2em;
    display: block; }
  #loginform input[type="password"],
  #loginform input[type="text"] {
    border: none;
    border-bottom: 1px solid white;
    padding: .5em .6em;
    outline: none;
    box-shadow: none !important; }

.login h1 a {
  background: url("../images/brightmill-color-logo.svg") no-repeat top center;
  width: 326px;
  height: 67px;
  text-indent: -9999px;
  overflow: hidden;
  padding-bottom: 15px;
  display: block; }

p a {
  color: white !important; }

#wp-submit {
  display: block;
  width: 100%;
  padding: 20px;
  text-align: center;
  background: #ffffff;
  border: 3px solid rgba(255, 113, 35, 0.3);
  color: #ff7123;
  line-height: 1em !important;
  outline: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  height: auto;
  margin-top: 30px;
  border-radius: 0;
  transition: border .2s ease-in-out; }
  #wp-submit:hover {
    border: 3px solid #ff7123; }

.login #login_error, .login .message {
  color: #6F6F6E;
  margin-top: 3em;
  font-weight: 400; }
