body {
  font-family: 'Segoe UI', sans-serif;
  background: #f7f9fc;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
  padding: 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  text-align: left;
}

select, button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  background: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #45a049;
}

.footer {
  font-size: 0.9rem;
  color: #888;
  margin-top: 10px;
}
