:root {
  --bs-bg-opacity: 0.5;
}

/* Web App */
.auth-wrap {
  height: 100vh;
}
.auth-wrap .auth-bg {
  height: 100%;
}
.auth-wrap .auth-logo img {
  height: 80px;
}
.auth-wrap .auth-form-wrap {
  inset: 0;
  display: grid;
  overflow-y: auto;
}
.auth-wrap .auth-form-content {
  width: 100%;
  height: 100%;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .auth-wrap {
    height: auto;
  }
  .auth-wrap .auth-bg {
    height: 100vh;
  }
  .auth-wrap .auth-form-content {
    max-width: 460px;
    border-radius: 4px;
    min-height: 680px;
    height: auto;
  }
}