body {
  background-color: #f8f9fa;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  font-family: "Segoe UI", sans-serif;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #dee2e6;
  border-top: 6px solid #6f42c1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 30px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.logo {
  max-width: 250px;
  margin-bottom: 10px;
}

.footer {
  position: absolute;
  bottom: 20px;
  font-size: 0.9rem;
  color: #6c757d;
}
