@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
body > app > .spinner-container {
  background: #fcfcfc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body > app > .spinner-container > .spinner-logo {
  width: 225px;
  height: 225px;
}
body > app > .spinner-container > .spinner {
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  border: 3px solid #ddd;
  border-top: 3px solid #5e00e4;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  margin-bottom: 30px;
}
body {
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none;
    -webkit-animation: none;
  }
}

.app-layout-container>.main-content{
      background: #f1f1f1;
    background-repeat: no-repeat;
    background-size: cover;
}