html {
  height: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}

.preload {
  height: 100vh;
  background: linear-gradient(180deg, #4A749B 0%, #42505D 100%), #42505D;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preload-box {
  padding: 31px 30px 45px;
  background: rgb(38, 71, 103);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preload-headers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 500px;
}

.preload-logo {
  width: 45%;
  height: 45%;
}

.preload-badge {
  font-weight: 700;
  font-size: 2.85rem;
  padding-bottom: 10px;
}

.preload-badge > span {
  color: #38cbf3;
}

.preload-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 5px;
}

.preload-text {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.05;
}

.spinner-dot {
  margin-top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #38cbf3;
  animation: pulse 1s infinite ease-in-out;
}

.spinner-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.spinner-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes pulse {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}
