html,
body {
  height: 100%;
}
.unauth-page {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .unauth-page {
    height: unset;
  }
}
.unauth-page .wrapper {
  flex: 1;
  display: flex;
  flex-direction: row;
}
.unauth-page .wrapper > img {
  width: 60%;
  height: 100%;
  object-fit: cover;
  background-blend-mode: multiply;
  background-image: linear-gradient(to top, #15c777, #bccc00);
}
@media only screen and (max-width: 768px) {
  .unauth-page .wrapper > img {
    display: none;
  }
}
.unauth-page .wrapper .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 100px;
  overflow-y: auto;
}
@media only screen and (max-width: 768px) {
  .unauth-page .wrapper .content {
    padding: 15%;
  }
}
.unauth-page .wrapper .content img.logo {
  width: 170px;
  height: 70px;
  margin-bottom: 60px;
}
.unauth-page .wrapper .content .page-title {
  margin-bottom: 60px;
}
.unauth-page .wrapper .content .page-title h1 {
  font-weight: bold;
  color: black;
  font-size: 50px;
  margin: 0;
}
.unauth-page .wrapper .content .page-title h6 {
  font-weight: bold;
  color: #bbbbbb;
  font-size: 14px;
  margin: 0;
}
.unauth-page .wrapper .content form.sign-in .form-group.csc {
  max-width: 75%;
}
.unauth-page .wrapper .content form.sign-in .form-group.csc .forgot-password {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: bold;
}
.unauth-page .wrapper .content form.sign-in .form-group.csc + p {
  font-weight: bold;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 35px;
}
/*# sourceMappingURL=styles.css.map */