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

body {
  background: #f5f8fc;
}

#app-boot-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eef4fb 0%, #f7faff 45%, #edf3fa 100%);
  transition: opacity 220ms ease, visibility 220ms ease;
}

#app-boot-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.app-boot-splash__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #d7e1ef;
  background: rgba(255, 255, 255, 0.86);
  color: #1f2a44;
  font: 600 13px/1.2 "Noto Sans KR", "Noto Sans", system-ui, sans-serif;
}

.app-boot-splash__inner img {
  width: 22px;
  height: 22px;
  display: block;
}
