/* WP LOGIN PAGE */
@font-face {
  font-family: "Assistant";
  src: url("assets/fonts/Assistant-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Assistant";
  src: url("assets/fonts/Assistant-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}

#login h1 a,
.login h1 a {
  background-image: url(/wp-content/uploads/2024/08/matzkal-logo.png); //create image folder in theme folder
  height: 65px;
  width: 320px;
  background-size: 320px 65px;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 30px;
}

body {
  background: #fff;
  color: #000 !important;

  height: 100%;
  display: flex;
  flex-direction: column;
}
.login #loginform {
  max-width: 340px;
  color: #000;
  font-family: "Assistant", sans-serif;
}

.login #loginform label {
  font-weight: 900;
}

.login #login {
  width: 100%;
  padding: 20px;
  margin-right: 0;
  box-sizing: border-box;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

form#loginform input#wp-submit {
  background: #152929;
  border-color: #152929;
  color: white;
  padding: 5px 30px;
  border-radius: 0px;
  width: 100%;
}

.login .language-switcher {
  width: 100%;
  padding: 0 0 24px;
  text-align: center;
}

@media (min-width: 1025px) {
  .login #login {
    width: 50%;
    padding: 50px;
  }

  body {
    background-image: url(/wp-content/uploads/2024/08/login-img.jpg) !important;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .login .language-switcher {
    width: 50%;
    margin: 0 0 0 auto;
  }
}
