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

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/login.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/admin-logo.svg) no-repeat center center;
  width: 209px;
  height: 50px;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  padding-bottom: 15px;
  display: block;
}

.login .help-text {
  width: 100%;
  text-align: center;
  font-weight: normal;
  font-size: 1rem;
}

#login {
  padding: 0;
  color: #ff445e;
}
.login a,
.login #backtoblog a,
.login #nav a {
  color: #ff445e;
  font-size: 14px;
}
.login a:hover,
.login a:focus,
.login #backtoblog a:hover,
.login #backtoblog a:focus,
.login #nav a:hover,
.login #nav a:focus {
  color: #4C4184;
  outline: none;
  box-shadow: none;
}
#login form {
  /* background: linear-gradient(45deg, #35394a 0%, #1f222e 100%); */
  padding: 24px;
  border: none;
  border-top: 5px solid #ff445e;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.15);
}
.login .button {
  position: relative;
  margin: 0;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #ff445e;
  border: 2px #ff445e solid;
  text-transform: uppercase;
  background: transparent;
  z-index: 1;
  cursor: pointer;
  transition: all 0.5s ease;
  overflow: hidden;
  display: inline-block;
  box-shadow: none;
  text-shadow: none;
  border-radius: 50px;
  height: unset !important;
  padding: 0px 24px !important;
}
.login .button:hover,
.login .button:focus {
  color: #FFF;
  background: #ff445e;
  border: 2px #ff445e solid;
}
.login form .forgetmenot {
  margin-top: 5px;
}
.login #login_error, .login p.message {
  /* background: linear-gradient(45deg, #35394a 0%, #1f222e 100%); */
  margin-top: 24px !important;
  border-left: 5px solid #ff445e;
}
body.login {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/trans-marble.png) no-repeat center center;
  background-size: cover;
  /* border: 5px solid #ff445e; */
  box-sizing: border-box;
}
