
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f7f9fb;
  color: #333;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

h1 {
  text-align: center;
  color: #007BFF;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #444;
}

p {
  font-size: 1rem;
  color: #666;
}

.button-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

button {
  flex: 1;
  background: #007BFF;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover {
  background: #0056b3;
}

.secondary-button {
  background: #6c757d;
}

.secondary-button:hover {
  background: #5a6268;
}

a {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
