body {
  max-height: 100vh;
  overflow-y: hidden;
}

.viewport {
  background-image: url(/images/bg-login1.svg);
  background-size: cover;
  background-position: 50% 50%;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .viewport {
    background-image: url(/images/bg-login2.svg);
  }
}

.container .header-row {
  min-height: 20vh;
}
.container .content-row {
  height: 80vh;
}
.container .content-row .card {
  margin-bottom: 10vh;
}
.container .content-row .card .card-body {
  max-height: 70vh;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .container {
    justify-content: space-between;
    font-size: 13px;
    padding: 0;
  }
  .container > .header-row {
    margin-top: auto;
    margin-bottom: auto;
  }
  .container > .header-row img {
    max-width: 140px;
  }
  .container > .row {
    margin-left: 0;
    margin-right: 0;
  }
  .container > .row > [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
  .container .card {
    border-radius: 1.5rem 1.5rem 0 0;
    min-height: 80vh;
  }
  .container .card .card-title {
    font-size: 20px !important;
  }
  .container .card .card-body {
    max-height: 80vh;
  }
}
