@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --fs-100: 1rem;
  --fs-200: 1.125rem;
  --fs-300: 1.25rem;
  --fs-400: 1.375rem;
  --fs-500: 1.5rem;
  --fs-600: 1.625rem;
  --fs-xl: 3.875rem;
  --fs-xl2: 3.125rem;
  --col-primary: #3AA0FF;
}

.login-container {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  height: 100vh;
}

html {
  font-size: 12px;
}

.login-graphic {
  background-color: var(--col-primary);
  padding: 0 3rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
  justify-content: center;
}
.login-graphic h1 {
  /*font-size: var(--fs-xl);*/
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.25rem;
  /*margin-top: 7rem;*/
  line-height: 4rem;
}
.login-graphic p {
  font-size: var(--fs-500);
  /*line-height: 2rem;*/
  /*margin-bottom: 8rem;*/
}
.login-graphic img {
  /*margin-top: auto;*/
  max-width: 90%;
  margin-inline: auto;
  margin-top: 3rem;
}

.login-form {
  padding: 0 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-form h2 {
  font-size: var(--fs-xl2);
  color: var(--col-primary);
  margin-bottom: 5rem;
}
.login-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.login-form .input-group {
  width: 100%;
}
.login-form .input-group:not(:last-child) {
  margin-bottom: 3rem;
}
.login-form .input-group label {
  display: block;
  color: #000;
  font-size: var(--fs-200);
  margin-bottom: 0.5rem;
}
.login-form .input-group input {
  padding: 1rem;
  border: 1px solid #E6E6E6;
  width: 100%;
  border-radius: 0.3125rem;
}
.login-form .input-group input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.login-form .input-group input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.login-form .input-group input::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.login-form .input-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.login-form .input-row .input-group {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.login-form .input-row .input-group label {
  display: inline-block;
  margin-bottom: 0;
}
.login-form .input-row .input-group input {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.login-form .input-row a {
  color: var(--col-primary);
  font-size: var(--fs-200);
}

.ko-btn-primary {
  font-size: var(--fs-300);
  color: #fff;
  font-weight: bold;
  padding: 1rem 4rem;
  border: none;
  background-color: var(--col-primary);
  box-shadow: 0px 10px 29px rgba(58, 160, 255, 0.35);
  border-radius: 0.3125rem;
  margin-top: 5rem;
}/*# sourceMappingURL=login.css.map */

 #loader {
     position: fixed;
     height: 100%;
     width: 100%;
     z-index: 999;
     display: flex;
     align-items: center;
     justify-content: center;
     pointer-events:none;
 }