*,
*::before,
*::after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  align-content: normal;
  position: fixed;
  width: 100vw;
  height: 100%;
  background-image: url("../images/login_bg_flower.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.language-switcher {
  margin-left: 1rem;
}

#login {
  width: 500px;
  height: 100vh;
  padding: 3rem;
  margin: 0 0 0 auto;
  background-color: white;
  box-shadow: 0 0 10px rgba(2, 0, 72, 0.5);
}

@media (max-width: 660px) {
  #login {
    width: 100vw;
    padding: 1.5rem;
    height: 80vh;
    margin-top: 20vh;
  }
}
#login h1 {
  height: 4rem;
  background-image: url("../images/logo_visproblog.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
#login h1 a {
  display: none;
}

@media (max-width: 660px) {
  #login h1 {
    position: absolute;
    top: 4vh;
    left: 20vw;
    right: 20vw;
    height: 12vh;
    filter: drop-shadow(0 0 10px rgba(2, 0, 72, 0.5));
  }
}
#loginform {
  background-color: rgba(0, 0, 0, 0);
  box-shadow: none;
  border: none;
}

input#user_login,
input#user_pass {
  background-color: #eeeeee;
  border: 1px solid #eeeeee;
  border-radius: 0.625rem;
  font-size: 1rem;
  padding: 0.5rem;
}
input#user_login:focus,
input#user_pass:focus {
  box-shadow: none;
  outline: none;
}

.dashicons,
.privacy-policy-link {
  color: #0062a1;
}

#wp-submit {
  background-color: #0062a1;
}

.message {
  border-radius: 0.625rem;
  padding: 2.5rem !important;
  border-left: none !important;
  margin: 1.5rem 0;
  background-color: white !important;
  color: #0062a1 !important;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1) !important;
}

/*# sourceMappingURL=login.css.map */
