body {
  margin: 0;
}

.layout-preloader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  background-color: #FFFFFF;
}

.layout-preloader {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #2853A0;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
