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

html {
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 13px;
}
@media screen and (min-width: 320px) {
  html {
    font-size: calc(13px + strip-unit(5px) * ((100vw - 320px) / strip-unit(1080px)));
  }
}
@media screen and (min-width: 1400px) {
  html {
    font-size: 18px;
  }
}

body {
  padding: 0;
  margin: 0;
  background-color: white;
  font-family: "Inter", sans-serif !important;
  font-size: 1rem !important;
}

.main {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
}
.main .main__content, .main .main__sidebar {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
}
.main__sidebar {
  -ms-flex-preferred-size: 280px;
  flex-basis: 280px;
  max-width: 280px;
  padding-top: 2rem;
  padding-bottom: 3rem;
  z-index: 1;
  background-color: white;
}
.main__content {
  position: relative;
  -ms-flex-preferred-size: calc(100% - 280px);
  flex-basis: calc(100% - 280px);
  width: calc(100% - 280px);
  max-width: calc(100% - 280px);
  min-height: 100vh;
  padding: 1.5rem 2rem;
  background-color: #f5f5fb;
}

/* generated by https://loading.io/ */
@keyframes spinner-animation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.loader {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.loader.hide {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.loader--wrapper {
  width: 180px;
  height: 180px;
  display: inline-block;
  overflow: hidden;
  background: none;
}
.loader--item {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
}
.loader--item div {
  box-sizing: content-box;
  left: 82.8px;
  top: 50.4px;
  position: absolute;
  animation: spinner-animation linear 1.3333333333s infinite;
  background: #0571be;
  width: 14.4px;
  height: 14.4px;
  border-radius: 7.2px/7.2px;
  transform-origin: 7.2px 39.6px;
}
.loader--item div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.2s;
  background: #0571be;
}
.loader--item div:nth-child(2) {
  transform: rotate(36deg);
  animation-delay: -1.0666666667s;
  background: #0571be;
}
.loader--item div:nth-child(3) {
  transform: rotate(72deg);
  animation-delay: -0.9333333333s;
  background: #0571be;
}
.loader--item div:nth-child(4) {
  transform: rotate(108deg);
  animation-delay: -0.8s;
  background: #0571be;
}
.loader--item div:nth-child(5) {
  transform: rotate(144deg);
  animation-delay: -0.6666666667s;
  background: #0571be;
}
.loader--item div:nth-child(6) {
  transform: rotate(180deg);
  animation-delay: -0.5333333333s;
  background: #0571be;
}
.loader--item div:nth-child(7) {
  transform: rotate(216deg);
  animation-delay: -0.4s;
  background: #0571be;
}
.loader--item div:nth-child(8) {
  transform: rotate(252deg);
  animation-delay: -0.2666666667s;
  background: #0571be;
}
.loader--item div:nth-child(9) {
  transform: rotate(288deg);
  animation-delay: -0.1333333333s;
  background: #0571be;
}
.loader--item div:nth-child(10) {
  transform: rotate(324deg);
  animation-delay: 0s;
  background: #0571be;
}

/* generated by https://loading.io/ */
.login {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  height: 100vh;
}
.login--alert {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}
.login__image {
  position: relative;
  display: block;
  width: 60%;
  height: 100%;
}
.login__image--background {
  position: relative;
  width: 100%;
  height: 100%;
  object-position: center right;
  object-fit: cover;
  filter: brightness(0.75);
}
.login__content {
  position: relative;
  display: block;
  width: 40%;
  height: auto;
  padding: 0 3rem;
}
.login__form {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 10rem);
  max-width: 450px;
  height: auto;
  transform: translate(-55%, -40%);
  -o-transform: translate(-55%, -40%);
  -moz-transform: translate(-55%, -40%);
  -webkit-transform: translate(-55%, -40%);
}
.login__form .form--login {
  display: block;
  width: 100%;
  height: auto;
}
.login__form .form--login .toggle-password {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  padding: 1rem;
  cursor: pointer;
  color: #023983;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
@media (max-width: 991px) {
  .login__image {
    width: 100%;
    height: 100vh;
  }
  .login__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
    padding: 3rem 3.5rem;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .login__form {
    position: relative;
    top: 0;
    left: 0;
    transform: translateY(0);
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .login__form .form--login .form-control {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: white;
  }
}

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