/*
 * Use the 'login_enqueue_scripts' action to enqueue the
 * resulting .css file to the login page.
 */
body {
  background: #1A1A1A;
  font-family: "Helvetica-Now", "Source Sans Pro", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body.login {
  position: relative;
}

#login {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 2rem;
}

.login {
  /*
  ** Logo
  */
  /*
  ** Form
  */
  /*
  ** Footer 
  */
  /*
  ** Messages 
  */
  /*
  ** Button
  */
}
.login h1 a {
  background-size: 150px;
  margin: 0 auto;
  width: 150px;
  height: 50px;
}
.login form {
  background: #1A1A1A;
  border: none;
}
.login form label {
  color: white;
}
.login form .input {
  box-shadow: none !important;
  border-radius: 0;
}
.login form .forgetmenot label {
  color: white;
}
.login form input[type=checkbox] {
  box-shadow: none;
}
.login #backtoblog a, .login #nav a {
  color: white;
}
.login #backtoblog a:hover, .login #nav a:hover {
  color: #eee;
}
.login .button.button-primary {
  text-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
  border-radius: 0;
  background: #0029FD;
  padding: 0.3rem 2.5rem;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.2s ease-in-out;
}
.login .button.button-primary::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f054";
  position: absolute;
  padding-left: 10px;
  display: inline-block;
  vertical-align: middle;
  opacity: 0;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  transition: 0.3s opacity;
  font-size: 0.7em;
}
.login .button.button-primary:hover {
  background: #061F9F;
}
.login .button.button-primary:hover::after {
  opacity: 1;
}
.login .button.button-primary:focus {
  outline: 2px solid white;
  outline-offset: -5px;
  background-color: #061F9F;
}
