body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #332745;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 15rem;
  height: 15rem;
  margin-top: 100dp;
  margin-bottom: 40dp;
}

/* .loading-text {
  color: white;
  font-size: 16px;
  font-family: Arial, sans-serif;
  margin-bottom: 40px;
}

.loading-indicator {
  width: 30px;
  height: 30px;
  border: 4px solid #fd4962;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
} */

.loader {
  margin: 0;
  position: absolute;
  top: 68%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 3rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.loader:before,
.loader:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  animation: pulsOut 1.8s ease-in-out infinite;
  /* filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.75)); */
  filter: drop-shadow(0 0 1rem #7818ff);
}
.loader:before {
  width: 100%;
  padding-bottom: 100%;
  box-shadow: inset 0 0 0 1rem #d9beff;
  animation-name: pulsIn;
}
.loader:after {
  width: calc(100%);
  padding-bottom: calc(100%);
  box-shadow: 0 0 0 0 #7818ff;
}

@keyframes pulsIn {
  0% {
    box-shadow: inset 0 0 0 1rem #7818ff;
    opacity: 0;
  }
  50%, 100% {
    box-shadow: inset 0 0 0 0 #d9beff;
    opacity: 1;
  }
}

@keyframes pulsOut {
  0%, 50% {
    box-shadow: 0 0 0 0 #d9beff;
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 0 1rem #7818ff;
    opacity: 0;
  }
}

/* @keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */
