.g-recaptcha {
  margin: auto auto 10px auto;
  display: table;
}

.login-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: #fff;
}

.login-left {
  background: #d1d7f5;
  background: radial-gradient(circle, #d1d7f5 0%, #d2d6de 100%);
  width: 50%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  height: 100vh;
}

.login-left .picture-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.login-left .picture-login img {
  width: 70%;
  opacity: 0.4;
}

.login-left .picture-login #img-credits {
  position: absolute;
  bottom: 0;
  color: #9eafec;
  opacity: 0.5;
}

.login-right {
  width: 50%;
  margin: 10px;
  background-color: #fff;
}

.login-right .login-box-body {
  background-color: #d2d6de;
  max-width: 360px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media only screen and (max-width: 767px) {
  .login-left {
    display: none;
  }
  .login-right {
    width: 100%;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .login-box-body {
    font-size: 1.5rem;
  }
}
/*# sourceMappingURL=login.css.map */