html,
body {
  padding: 0;
  margin: 0;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.onboarding-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: radial-gradient(
    115.93% 96.4% at 86.99% 22.26%,
    #0052cc 0%,
    #7200cc 100%
  );
}
.waves {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(./waves-large.png);
  background-position: center;
  background-size: cover;
}
.logoContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logoContainer img {
  width: 338px;
}
.spinnerBlock {
  margin-top: 80px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.spinner {
  animation: spin 2s linear;
}
.loadingText {
  margin-top: 10px;
}
.bottomInfoBar {
  width: 100%;
  color: #fff;
  bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.spinnerblock {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 78px;
}
.spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  animation: spin 2s linear;
  animation-iteration-count: infinite;
}

.loadingText {
  margin-top: 10px;
  font-size: 12px;
  font-family: 'Inter';
}
.bottomInfoBar {
  position: absolute;
  bottom: 40px;
  justify-content: center;
}

.infoBarText {
  cursor: default;
  margin: 0 16px;
  font-size: 12px;
  font-family: 'Inter';
}

.divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.5);
}

@font-face {
  font-family: 'Inter';
  src: local('Inter'), url(./Inter-Regular.otf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
