body {
  background: white;
  font-family: "Inter UI", sans-serif;
  margin: 0;
  padding: 0;
}

.login-page {
  background: #e2e2e5;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: absolute;
  place-content: flex-start;
  width: 100%;
  background-image: url(../images/large-login-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.login-page .login-header {
  height: 80px;
  width: 100%;
  background-color: #ffffff;
  padding: 5px 0;
}
.login-page .login-header .content {
  display: flex;
  height: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 90%;
}
.login-page .login-header .content .logo {
  height: 100%;
}
.login-page .login-header .content .contact-info {
  text-align: right;
}
.login-page .container {
  display: flex;
  height: 320px;
  margin: 0 auto;
  width: 840px;
  padding-top: 150px;
}
.login-page .container .left {
  background: white;
  height: calc(100% - 40px);
  top: 20px;
  position: relative;
  width: 60%;
}
.login-page .container .left .illustration {
  width: 100%;
  height: 100%;
}
.login-page .container .right {
  background: #4C5E9E;
  box-shadow: 0px 0px 40px 16px rgba(0, 0, 0, 0.22);
  color: #F1F1F2;
  position: relative;
  width: 40%;
}
.login-page .container .right .form {
  margin: 70px 40px 40px;
}
.login-page .container .right .form .form-error-msg {
  color: #f2f2f2;
  background-color: red;
  display: block;
  font-size: 12px;
  padding: 5px;
}
.login-page .container .right .form label {
  color: #f2f2f2;
  display: block;
  font-size: 14px;
  height: 16px;
  margin-top: 20px;
  margin-bottom: 5px;
}
.login-page .container .right .form input {
  background: transparent;
  border: 0;
  border-bottom: 2px solid #c2c2c5;
  color: #f2f2f2;
  font-size: 20px;
  height: 30px;
  line-height: 30px;
  outline: none !important;
  width: 100%;
}
.login-page .container .right .form input::-moz-focus-inner {
  border: 0;
}
.login-page .container .right .form input::-ms-reveal {
  display: none;
}
.login-page .container .right .form .button {
  width: 100px;
  height: 30px;
  color: #252525;
  cursor: pointer;
  margin-top: 20px;
}
.login-page .container .right .form .password-container {
  position: relative;
}
.login-page .container .right .form .password-container .password-toggle {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

@media (max-width: 767px) {
  .login-page {
    height: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .login-page .container {
    flex-direction: column;
    height: 630px;
    width: 320px;
  }
  .login-page .container .left {
    height: 100%;
    left: 20px;
    width: calc(100% - 40px);
    max-height: 270px;
  }
  .login-page .container .right {
    flex-shrink: 0;
    height: 100%;
    width: 100%;
    max-height: 350px;
  }
}

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