@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Inter");
body {
  background-color: #FFFFFF;
  font-family: Inter;
  font-size: 13px;
  color: #101828;
  overflow-x: hidden;
}

#cookieConsent {
  display: flex;
  align-items: center;
}

#cookieConsent button {
  margin-left: auto;
  margin-right: 10px;
}

.login-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  isolation: isolate;
  width: 100%;
  height: calc(100vh - 20px); /* adjust as needed */
}

.login-container-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 32px;
}

.login-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 22px;
}

.login-content img {
  width: 300px;
}

.login-right {
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end; /* to align the image to the right */
  background: url(/images/login_bg.png) no-repeat center;
  background-size: cover;
  height: 100%;
  margin: 0px !important;
  padding: 0px !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.welcome-back {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
}

.login-right img {
  margin: 0;
  padding: 0;
  max-width: 100%; /* to prevent the image from exceeding the container's width */
}

.forgot-pass {
  color: #337ab7;
  float: left;
  font-size: 16px;
}

.field-validation-error:before {
  font-family: FontAwesome;
  content: "\f06a ";
}

.field-validation-error {
  float: left;
}

accept-policy {
  color: #337ab7;
}

input,
select,
textarea {
  max-width: 100%;
}

input[type=text]:disabled {
  background: #dddddd;
}

.col-xs-12, .col-sm-12, .col-md-6 {
  padding-right: 0;
}

@media (max-width: 767px) {
  .login-right {
    display: none;
  }
}

/*# sourceMappingURL=login.css.map */
