.loading-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: transparent;
}

.logo-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-logo {
  width: 125px;
  height: auto;
  animation: revealLogo 1s ease-in-out forwards;
  z-index: 2;
}

.spinner-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 4px solid rgba(0, 123, 255, 0.2);
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spinCircle 1.5s linear infinite;
  z-index: 1;
}

.loading-text {
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  color: #333;
  margin-top: 20px;
  animation: fadeText 1.5s infinite ease-in-out;
}

@keyframes revealLogo {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes fadeText {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
