@font-face {
  font-family: "sansthreevariable";
  src: url("/assets/fonts/sourcesansthree/SourceSans3-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
}

body {
  overflow: auto;
  display: flex;
  flex-direction: column;
  margin: 0;
  background: #f1f3f6;
  font-family: "sansthreevariable";
  min-width: 100vw;
}

.button-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  background-color: #ff5f1f;
  color: #ffffff;
  transition: background-color 0.2s, color 0.2s, border 0.2s;
  text-decoration: none;
}

.button-main:hover {
  background-color: #cc3c19;
}

#hrblizz-wrapper {
  width: 100vw;
  height: 100vh;
}

#hrblizz-wrapper>div {
  position: relative;
}

.app-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100vw;
  height: 100vh;
}

.login-page {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  position: relative;
  background: linear-gradient(180deg, #e5f5ff 0%, #ffefe9 100%);
}

.login-page::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 343px;
  height: 224px;
  flex-shrink: 0;
  border-radius: 343px;
  background: #ff5f1f;
  filter: blur(150px);
}

.login-page::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 426px;
  height: 242px;
  top: 50%;
  transform: translate(40%, -50%);
  flex-shrink: 0;
  border-radius: 426px;
  background: #005c99;
  filter: blur(150px);
}

.login-page__header {
  position: absolute;
  top: 32px;
  text-align: center;
  display: flex;
  align-items: center;
}

.login-page__header .logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.login-page__container {
  box-sizing: border-box;
  display: flex;
  min-width: 544px;
  padding: 32px;
  z-index: 1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 8px 22px 0px rgba(41, 45, 51, 0.15);
  overflow: hidden;
  transition: all 300ms ease-out;
}

.login-page__container .content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  transition: all 300ms ease-out;
}

.login-page__container .content>div:not(:last-child) {
  margin-bottom: 32px;
}

.login-page__container .content .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 350px;
  text-align: center;
}

.login-page__container .content .header__title {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}

.login-page__container .content .header__subtitle {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #1a3e6d;
}

.login-page__container .content .body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-page__container .content .body form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 350px;
}

.login-page__container .content .footer {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #1a3e6d;
}

.login-page__container .content .footer a {
  color: #ff5f1f;
}

.login-page__footer {
  position: absolute;
  bottom: 32px;
  width: 100%;
}

.login-page__footer .mercans-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.mercans-footer .copyright {
  font-size: 12px;
  letter-spacing: 0px;
  color: #858585;
  text-align: center;
}

.mercans-footer .resources {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.mercans-footer .rss-link {
  padding: 0px 5px;
  font-size: 12px;
}

.mercans-footer .resources .link_separator {
  height: 15px;
  width: 1px;
  background-color: #ff5f1f;
}

.mercans-footer .resources .rss-link {
  border: none !important;
}

.mercans-footer a {
  color: #ff5f1f;
  text-decoration: underline;
  cursor: pointer;
}

:where(button[data-v-e5eba4b2], a[data-v-e5eba4b2]) {
  appearance: none;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  outline: none;
  height: 100%;
  text-decoration: none !important;
}

/* Loader error */
.loader__error {
  -webkit-animation: rotation 6s infinite linear;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
  }
}