body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Helvetica, "sans-serif";
  background-color: #f2f3f8;
  color: #5e6278;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.splash-screen span {
  color: #5e6278;
  transition: none !important;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.splash-screen img {
  /* margin-left: calc(100vw - 100%); */
  margin-bottom: 14px;
  height: 75px !important;
  margin-right: 3px;
}

.spinner {
  width: 2em;
  height: 2em;
  border: 0.3em solid rgba(0, 0, 0, 0.1);
  border-left-color: #30b1e0 !important;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

[data-bs-theme="dark"] .spinner {
  border-left-color: #30b1e0;
  border: 0.4em solid rgba(156, 156, 156, 0.603);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

[data-bs-theme="dark"] .splash-screen {
  background-color: #151521;
  color: #92929f;
}

[data-bs-theme="dark"] .splash-screen span {
  color: #92929f;
}

#root {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
