body {
  margin: 0;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  overflow: hidden;
}
@media (min-width: 1600px) {
  body {
    font-size: 13px;
  }
}
.komprise-logo {
  text-align: center;
}
.komprise-logo > img {
  width: 225px;
}
.login-content-wpr {
  height: 100vh;
  display: flex;
  background: #F8F8FC;
}
.left-section {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.left-section--footer {
  text-align: center;
  padding: 14px;
  font-size: 12px;
  color: #53545B;
}

.login-content {
  flex-basis: 270px;
  background: white;
  box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.06);
  margin: auto;
  padding: 65px;
}
.login-banner {
  height: 100vh;
  aspect-ratio: 8 / 9;
}
.login-banner #iframe-banner, .login-banner img {
  width: 100%;
  height: 100%;
}
#iframe-banner , #fallback-image {
  display: none;
}
@media (max-width: 1100px) {
  .login-banner {
    display: none;
  }
}
.form-sub-header {
  display: block;
  text-align: center;
  margin-bottom: 55px;
}
.email-section,
.password-section {
  padding-top: 8px;
}
.login-input {
  background: #ffffff;
  border: 1px solid #d8d9e0;
  border-radius: 3px;
  width: 100%;
  padding: 7px 10px;
  margin-top: 3px;
  outline: none;
  box-sizing: border-box;
}
.login-input:focus {
  border-color: #148bc3;
}
input.error-border {
  border: 1px solid #ff1d25;
  border-radius: 3px;
  box-shadow: 0 0 4px 0 rgba(255, 29, 37, 0.4);
}
.cta-btn {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  color: white;
  background: #148bc3;
  border-radius: 2px;
  border: none;
  min-height: 35px;
}
.cta-btn:hover {
  cursor: pointer;
  background: #0c638c;
}
.cta-btn.disabled {
  background-color: #d8d9e0;
  cursor: not-allowed;
  color: #b7b8bf;
}
.forgot-password {
  text-align: center;
  margin-top: 22px;
  line-height: 16px;
  color: #148bc3;
  white-space: nowrap;
  display: block;
}
.input-error {
  min-height: 14px;
  font-size: 10px;
  color: #ff1d25;
  padding-top: 3px;
}
.k-toaster {
  padding-left: 5px;
  line-height: 28px;
}
.k-toaster.validation {
  color: #1e1f26;
  background: #ce4157;
  margin-top: 8px;
}
.k-toaster-content {
  display: flex;
  align-items: baseline;
  line-height: 15px;
  padding: 7px 5px 7px 10px;
  color: #1e1f26;
  background: #f0f1f8;
}
.back-to-login {
  color: #148bc3;
}

.d-none {
  display: none !important;
}

.login-loader {
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}
.login-loader div {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.login-loader div:nth-child(1) {
  top: 6px;
  left: 12px;
}
.login-loader div:nth-child(2) {
  top: 1.7px;
  left: 10.4px;
}
.login-loader div:nth-child(3) {
  top: 0px;
  left: 6px;
}
.login-loader div:nth-child(4) {
  top: 1.7px;
  left: 1.6px;
}
.login-loader div:nth-child(5) {
  top: 6px;
  left: 0px;
}
.login-loader div:nth-child(6) {
  top: 10.4px;
  left: 1.8px;
}
.login-loader div:nth-child(7) {
  top: 12px;
  left: 6px;
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
