:root {
  color-scheme: light;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background-color: var(--easylife-bootstrap-splash-background, hsl(254 60% 96%));
  color: var(--easylife-bootstrap-splash-text, hsl(254 60% 18%));
  font-family: Inter, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#root {
  min-height: 100vh;
}

.bootstrap-splash {
  --easylife-bootstrap-splash-background: hsl(254 60% 96%);
  --easylife-bootstrap-splash-text: hsl(254 60% 18%);
  --easylife-bootstrap-splash-accent: hsl(254 60% 40%);
  --easylife-bootstrap-splash-logo-background: transparent;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--easylife-bootstrap-splash-background);
  color: var(--easylife-bootstrap-splash-text);
}

@supports (height: 100dvh) {
  .bootstrap-splash {
    min-height: 100dvh;
  }
}

.bootstrap-splash-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
}

.bootstrap-splash__logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background-color: var(--easylife-bootstrap-splash-logo-background);
}

.bootstrap-splash-logo {
  display: block;
  width: min(192px, 45vw);
  height: auto;
  max-height: min(96px, 12vh);
  max-width: 100%;
  object-fit: contain;
}

.bootstrap-splash-logo--custom {
  width: min(160px, 45vw);
}
