/*
 *    Custom Login for WordPress
 *    based on: https://premium.wpmudev.org/blog/customize-login-page/
 *    © 2017 by 4PI design & danielfajardo
 *
 *    4pi-custom-login.css
 */
 
 body.login, body.language-switcher {
   background-color: white;
   background-repeat: no-repeat;
   background-attachment: fixed;
   background-position: top center;
   background-size: cover;
 }
 #language-switcher {
   display: none;
   margin: 0 auto;
   min-width: 320px;
   max-width: 640px;
 }
 #login {
   min-width: 320px;
   width: 70%;
   max-width: 480px;
 }
.login h1,
.login .message,
.login #login_error,
.login form {
  background-color: white;
  box-shadow: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 2em;
  border-width: 0;
  border-style: solid;
  border-color: #222;
}
.login h1 {}
.login form {}
.login .message,
.login #login_error {
  padding: 12px auto;
  color: white;
  text-transform: uppercase;
  text-align: center;
  border: none;
}
.login .message {
  background-color: rgba( 94, 164, 67, 1);
}
.login #login_error {
  background-color: rgba( 255, 0, 0, 1);
}
.login h1 {
  padding: 1em 0;
  margin: 0;
}
.login h1 a {
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    padding: 0;
    display: block;
}
.login a,
.login #backtoblog a,
.login #nav a {
  /* color: white; */
}
.login #nav a {
  text-align: center;
}
.login label {
  font-size: 11px;
  letter-spacing: -.05em;
}
.login input {
  background-color: rgba(240, 240, 240, .33);
  border-color: rgba(120, 120, 120, .7);
}
.login input[type="text"] {
  background-color: rgba(240, 240, 240, .33);
  border-color: rgba(120, 120, 120, .7);
  font-size: 28px;
  -webkit-border-radius: 7px;
  padding-top: .3em !important;
  padding-left: 1em !important;
  padding-bottom: .3em !important;
  padding-right: 1em !important;
}
.login input[type="password"] {
  background-color: rgba(240, 240, 240, .33);
  border-color: rgba(120, 120, 120, .7);
  font-size: 28px;
  -webkit-border-radius: 7px;
  padding-top: .3em !important;
  padding-left: 1em !important;
  padding-bottom: .3em !important;
  padding-right: 1em !important;
}
.login input[type="checkbox"] {}
.login .forgetmenot {
  margin-top: 1.8em !important;
}
.login .submit {
  margin-top: 1em !important;
}
.login .button {
  width: auto;
  padding: 1em;
  float: right;
  -webkit-border-radius: 3px;
  border: none;
  text-transform: uppercase;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.login .button .dashicons {
  top: 0.7rem !important;
}
.login .button.button-large {
  padding: 1em 2em;
  line-height: normal;
  font-size: 12px;
  vertical-align: middle;
  height: auto;
  margin-bottom: 1em;
}
.login .button-primary {
  color: #222;
  background-color: white !important;
  border: 1.5px solid rgba(240, 240, 240, .7);

}
.login .button-primary:hover {
  color: #222;
  background-color: rgba(240, 240, 240, .33) !important;
  border: 1px solid rgba(120, 120, 120, .7);

}
.login .button-primary:active {
  color: white;
  background-color: #222 !important;
  border: 1px solid #222;
}
.login .privacy-policy-page-link {
  text-align: left;
  margin: 5em 2em 2em;
}