body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 90%;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

p {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.email {
  color: #2563eb;
  cursor: pointer;
  text-decoration: underline;
}

