/* Reset & font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #f4f6fb;
  color: #333;
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.wrapper {
  text-align: center;
  padding: 40px;
  max-width: 500px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  animation: fadeIn 1.5s ease-in;
}

.logo {
  width: 80px;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2c3e50;
}

p {
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
}

footer p {
  font-size: 14px;
  color: #aaa;
  margin-top: 20px;
}

/* Loader animation */
.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #ddd;
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}