body {
  font-family: "Rubik Puddles", system-ui;
  background: #fff3f8;
  margin: 0;
  padding: 0;
  text-align: center;
}

.order-form {
  max-width: 400px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.order-form input {
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.order-form button {
  background: #ff4fad;
  color: white;
  font-weight: bold;
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s ease;
}

.order-form button:hover {
  background: #ff2b9b;
}

.confirmation {
  margin-top: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
}

.hidden {
  display: none;
}
