/* [project]/app/page.module.css [app-client] (css) */
.page-module__E0kJGG__loaderContainer {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.page-module__E0kJGG__loaderContent {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  display: flex;
}

.page-module__E0kJGG__rotatingWrapper {
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  margin-bottom: 200px;
  animation: 3s linear infinite page-module__E0kJGG__spin;
  display: flex;
  position: relative;
}

.page-module__E0kJGG__rotatingImage {
  filter: drop-shadow(0 8px 20px #0003);
  animation: 3s linear infinite page-module__E0kJGG__rotate;
}

.page-module__E0kJGG__logoWrapper {
  z-index: 10;
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
  box-shadow: 0 4px 15px #0000001a;
}

.page-module__E0kJGG__loadingText {
  color: #fff;
  letter-spacing: 2px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  animation: 1.5s ease-in-out infinite page-module__E0kJGG__pulse;
}

@keyframes page-module__E0kJGG__rotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes page-module__E0kJGG__spin {
  0% {
    transform: rotate(0)scale(1);
  }

  50% {
    transform: rotate(180deg)scale(1.05);
  }

  100% {
    transform: rotate(360deg)scale(1);
  }
}

@keyframes page-module__E0kJGG__pulse {
  0% {
    opacity: .6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: .6;
  }
}

@media (max-width: 640px) {
  .page-module__E0kJGG__rotatingWrapper {
    width: 120px;
    height: 120px;
  }

  .page-module__E0kJGG__logoWrapper {
    width: 80px;
    height: 80px;
  }

  .page-module__E0kJGG__loadingText {
    font-size: 16px;
  }
}

/*# sourceMappingURL=app_page_module_07gh4g0.css.map*/