/* 
  @pakage login

*/
*{
  box-sizing: border-box;
}
body{
  background-image: url(./login-bg.jpg);
  background-size: cover;
}
body:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(100,100,100,0.5);
}
#login{
  padding-top: 150px;
  position: relative;
  z-index: 2;
}
.login h1 a{
  margin-bottom: 10px;
  background-image: url(./login-logo.svg);
}
#login label{
  color: #fff;
}
#loginform{
  margin: 0;
}
.login #login_error{
  border-left: none;
  border-top: solid 4px #ef476f;
  box-shadow: 0 5px 10px #777777;
  background-color: rgba(255,255,255,0.8);
  position: fixed;
  color: #ef476f;
  z-index: 4;
  top: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
}
.login #login_error br + br{
  display: none;
}
#loginform{
  padding: 0;
  border: none;
  background-color: transparent;
  background-position: center top;
  box-shadow: none;
}
.login #nav,.login #backtoblog{
  padding: 0;
}
.login #nav a,.login #backtoblog a{
  color: #fff;
}
.language-switcher{
  width: 320px;
  position: relative;
  z-index: 2;
}
.language-switcher .dashicons{
  color: #fff;
}
.login .wp-pwd .dashicons{
  color: #aaa;
}
.login .wp-pwd .button.wp-hide-pw{
  outline: none;
  box-shadow: none;
  border: none;
}
/* #language-switcher{
  display: flex;
  align-items: center;
} */
#language-switcher .button{
  background-color: #3297b9;
  border: none;
  color: #fff;
}
#user_login,#user_pass{
  padding-left: 40px;
  padding-right: 40px;
  border: none;
  box-shadow: none;
  background-size: 15px auto;
  background-repeat: no-repeat;
  background-position: 13px center;
  border-radius: 2px;
  background-color: rgba(255,255,255,0.7);
}
#user_login{
  background-image: url(./login-admin.png);
}
#user_login:-webkit-autofill,
#user_login:-webkit-autofill:hover,
#user_login:-webkit-autofill:focus,
#user_login:-webkit-autofill:active {
  background-image: url(./login-admin.png)!important;
}
#user_pass{
  background-image: url(./login-key.png);
}
#wp-submit{
  padding: 5px 0;
  margin-top: 15px;
  width: 100%;
  background-color: #3297b9;
  border: none;
  box-shadow: none;
  font-size: 14px;
}
@media screen and (max-width: 640px){
  #login{
    padding-top: 80px;
  }
}