/*@import 'admin.css';
@font-face {
  font-family: "bootstrap-icons";
  src: url("~bootstrap-icons/font/fonts/bootstrap-icons.woff2") format("woff2"),
  url("~bootstrap-icons/font/fonts/bootstrap-icons.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}



.login {

  background-color: var(--secondary-light);
  /*display: flex;*/
  /*justify-content: center;*/
  /*align-items: center;*/
  /*flex-direction: column;*/
 /* position: relative;
  height: 100vh;
  width: 100vw;
}
.login * {
  font-family: 'Satoshi', sans-serif;
  box-sizing: border-box;
}
#login {
  width: 50%;
  /*border-radius: var(--radius);*/
  /*display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 48px 50px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: var(--box-shadow);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

@media (max-width: 1024px) {
  #login {
    width: 75%;
  }
}
@media (max-width: 768px) {
  #login {
    width: 100%;
  }
}
#login > * {
  width: 390px !important;
}

.login:before {
  background-image: url('../images/login/background-login.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50%;
  height: auto;
  max-width: 400px;
  transform: translateX(50%);
}

#login form {
  border: none;
  box-shadow: none;
  padding: 0;
  background: var(--white);
}

#login h1 {
  margin-bottom: 20px;
}
*/
#login h1 a {
  background-image: url('../images/logo.svg');
  padding-bottom: 30px;
  background-position: center center;
  background-size: contain;
  height: 50px;
  margin: 0;
  width: auto;
}
/*
.login label {
  font-weight: bold;
  color: var(--gray);
  padding-bottom: 4px;
  font-size: 13px;
}
.login #backtoblog a, .login #nav a {
  color: var(--gray);
}
.login form .input, .login form input[type=checkbox], .login input[type=text] {
  border: 1px solid var(--secondary);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 24px;
  color: var(--gray);
  box-shadow: none;
}

.login form input:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.login .button.wp-hide-pw {
  height: 47px;
}

.login .button.wp-hide-pw .dashicons {
  color: var(--gray);
}

.login #backtoblog, .login #nav {
  padding-left: 0;
}

.login #wp-submit {
  background-color: var(--primary-900) !important;
  color: var(--primary-100) !important;
  border-color: var(--primary-900) !important;
  box-shadow: var(--box-shadow);
  border: 2px solid;
  padding: 5px 10px;
  border-radius: var(--radius);
  font-weight: bold;
}

.language-switcher {
  width: 100%;
  text-align: center;
}

.login #login_error, .login .message, .login .success {
  padding: 12px 16px;
  border-radius: 4px;
  box-shadow: none;
}

.login #login_error {
  background-color: var(--red-100) !important;
  color: var(--red-900) !important;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.login .success {
  background-color: var(--green-100) !important;
  color: var(--green-900) !important;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.login .message {
  background-color: var(--primary-100) !important;
  color: var(--primary-900) !important;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.login .message:before,
.login .success:before,
.login #login_error:before {
  position: static;
  margin: 0;
}

.login-icons {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.login-icons img {
  position: absolute;
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
    transform: rotate(0deg) translate(-10px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}

@keyframes rotate-2 {
  from {
    -webkit-transform: rotate(0deg) translate(10px) rotate(0deg);
    transform: rotate(0deg) translate(10px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translate(10px) rotate(-360deg);
    transform: rotate(360deg) translate(10px) rotate(-360deg);
  }
}

@keyframes rotate-3 {
  from {
    -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
    transform: rotate(0deg) translate(-10px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg) translate(-10px) rotate(360deg);
    transform: rotate(-360deg) translate(-10px) rotate(360deg);
  }
}

@keyframes rotate-4 {
  from {
    -webkit-transform: rotate(0deg) translate(10px) rotate(0deg);
    transform: rotate(0deg) translate(10px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg) translate(10px) rotate(360deg);
    transform: rotate(-360deg) translate(10px) rotate(360deg);
  }
}

.icon-quote {
  left: 36%;
  top: 8.8%;
  -webkit-animation: rotate-3 6s infinite linear;
  animation: rotate-3 6s infinite linear;
}

.icon-briefcase {
  left: 8%;
  top: 24%;
  -webkit-animation: rotate 6s infinite linear;
  animation: rotate 6s infinite linear;
}

.icon-world-map {
  left: 28%;
  top: 62%;
  -webkit-animation: rotate-4 6s infinite linear;
  animation: rotate-4 6s infinite linear;
}

.icon-translate {
  left: 40%;
  top: 90%;
  -webkit-animation: rotate 6s infinite linear;
  animation: rotate 6s infinite linear;
}

.icon-google-maps {
  right: 12%;
  top: 77%;
  -webkit-animation: rotate-4 6s infinite linear;
  animation: rotate-4 6s infinite linear;
  width: 56px
}

.icon-folder {
  right: 25%;
  top: 48%;
  -webkit-animation: rotate-3 6s infinite linear;
  animation: rotate-3 6s infinite linear;
}

.icon-messages {
  right: 18%;
  top: 20%;
  -webkit-animation: rotate-3 6s infinite linear;
  animation: rotate-3 6s infinite linear;
}

.icon-user {
  right: 34.8%;
  top: 7%;
  -webkit-animation: rotate-3 6s infinite linear;
  animation: rotate-3 6s infinite linear;
  width: 26px;
}

.language-switcher {
  display: none;
}
*/
