* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f9f9fb;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #333;
}

.container {
  text-align: center;
  padding: 20px;
  max-width: 400px;
  width: 90%;
}

.logo {
  max-width: 120px;
  margin-bottom: 30px;
  /* Placeholder styling if image is missing */
  font-weight: bold;
  font-size: 24px;
  color: #000;
}

h1 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Simple loading spinner */
.spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #eee;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  margin: 20px auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.footer-text {
  font-size: 0.85rem;
  color: #888;
  margin-top: 20px;
}