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

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

******************************************************************/
.login h1 a {
  background: url(../images/logo.svg) no-repeat top center;
  width: 100%;
  height: 60px;
  text-indent: -9999px;
  overflow: hidden;
  padding-bottom: 15px;
  display: block;
  background-size: contain;}

  input#wp-submit {
      background: #00E35B;
      border-color: #00E35B #00E35B #00E35B;
      box-shadow: 0 1px 0 #00E35B;
      color: #fff;
      text-decoration: none;
      text-shadow: 0 -1px 1px #00E35B, 1px 0 1px #00E35B, 0 1px 1px #00E35B, -1px 0 1px #00E35B;
      transition: ease .5s;
  }
  input#wp-submit:hover {
      background: #3549D3;
      border-color: #3549D3;
      color: #fff;
      box-shadow: 0 1px 0 #3549D3;
      text-shadow: 0 -1px 1px #3549D3, 1px 0 1px #3549D3, 0 1px 1px #3549D3, -1px 0 1px #3549D3;
  }

input[type=checkbox]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime-local]:focus, input[type=datetime]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=password]:focus, input[type=radio]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus {
    border-color: #00E35B;
    box-shadow: 0 0 0 1px #00E35B;
    outline: 2px solid transparent;
}
.wp-core-ui .button, .wp-core-ui .button-secondary {
    color: #3549D3;
    border-color: #3549D3;
    background: #f6f7f7;
    vertical-align: top;
}