/**
 * Auth page — minimal shell for React iframe (no Bootstrap / LK stack).
 */

html,
body {
  height: 100%;
  margin: 0;
}

.wz-shell.wz-auth-page {
  min-height: 100%;
  min-height: 100dvh;
  background-color: var(--wz-color-bg);
  font-family: var(--wz-font-family);
  color: var(--wz-color-text-body);
}

.wz-shell.wz-auth-page .wz-auth-main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
}

.wz-shell.wz-auth-page #spa-react-auth {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  height: auto;
  border: none;
  outline: none;
}

@media (min-width: 1024px) {
  .wz-shell.wz-auth-page #spa-react-auth {
    height: 100%;
  }
}
