body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #024452;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 20rem;
  height: 20rem;
  margin-top: 100dp;
  margin-bottom: 40dp;
}
/* .logo {
  width: 180px;
  height: 180px;
  margin-top: 100px;
  margin-bottom: 40px;
} */

.loading-text {
  color: white;
  font-size: 16px;
  font-family: Arial, sans-serif;
  margin-bottom: 40px;
}

.loading-indicator {
  width: 20px;
  height: 20px;
  border: 3px solid #FF664B;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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