html {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: none;
  background: #0b0c10;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  display: grid;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow: visible;
  place-items: center;
  place-items: safe center;
  padding:
    max(24px, env(safe-area-inset-top, 0px))
    max(24px, env(safe-area-inset-right, 0px))
    max(24px, env(safe-area-inset-bottom, 0px))
    max(24px, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  color: #f4f5f7;
  font: 15px/1.5 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hub-sso-status {
  max-width: 420px;
  margin: 0;
  text-align: center;
  color: #aeb5c2;
}

.hub-sso-status[data-failed="true"] {
  color: #ff9b9b;
}

@media (max-height: 520px) {
  body {
    place-items: start center;
  }
}
