body {
  background: linear-gradient(to bottom right, #a5b4fc, #c4b5fd);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
}

.container {
  max-width: 600px;
  margin: 20px;
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: fadeIn 0.6s ease-in;
}

h1 {
  font-size: 32px;
  color: #4c1d95;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

p {
  font-size: 18px;
  color: #374151;
  margin-bottom: 20px;
  line-height: 1.6;
}

button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  background: #7c3aed;
  color: white;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background: #6d28d9;
  transform: scale(1.05);
}

button i {
  margin-right: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}