body {
  font-family: Arial, sans-serif;
  background-color: #fff9f0;
  display: flex;
  justify-content: center;
  padding: 30px;
}

.container {
  background: #ffffff;
  padding: 25px 35px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 450px;
}

h1, h2 {
  color: #d35400;
  text-align: center;
}

form label {
  display: block;
  margin-top: 12px;
  font-weight: bold;
}

input, select, textarea {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.toppings label {
  display: inline-block;
  width: 48%;
  margin-bottom: 6px;
}

button {
  width: 100%;
  margin-top: 15px;
  background: #e67e22;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background: #cf711f;
}

.error {
  color: red;
  font-size: 13px;
}

.success {
  color: green;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
