body {
  font-family: Arial, sans-serif;
  background: #ffe6f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: #fff0f6;
  padding: 25px;
  border-radius: 15px;
  width: 340px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

h1 {
  color: #ff4d94;
}

input[type="text"] {
  width: 100%;
  padding: 10px;
  margin: 12px 0;
  border-radius: 8px;
  border: 1px solid #ffcce0;
  text-align: center;
}

.options {
  margin: 10px 0;
}

.checks {
  text-align: left;
  margin: 10px 0;
}

button {
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 8px;
  background: #ff80bf;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #ff4da6;
}