body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0f0f0f;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


.form-section {
  width: 90%;
  max-width: 600px;
  margin: 60px auto; 
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 0 15px rgba(0, 114, 255, 0.3);
}

h1 {
  text-align: center;
  background: linear-gradient(90deg, #00C6FF, #9D50BB);
  background-clip: text;
  color: transparent;
  font-size: 2.2rem;
  
}

h2 {
  margin-top: 25px;
  font-size: 1.3rem;
  background: linear-gradient(90deg, #00C6FF, #9D50BB);
  background-clip: text;
  color: transparent;
}

label {
  display: block;
  margin-top: 12px;
  font-weight: bold;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
}

input:focus, select:focus, textarea:focus {
  border: 1px solid #00C6FF;
  outline: none;
}

button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  border: none;
  background: linear-gradient(90deg, #00C6FF, #9D50BB);
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  opacity: 0.9;
}

fieldset {
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px;
  margin-top: 10px;
}

.toppings label {
  display: inline-block;
  width: 48%;
  margin-bottom: 6px;
}

.error {
  color: #ff6b6b;
  font-size: 13px;
  height: 14px;
  display: block;
}

.success-message {
  display: none;
  text-align: center;
  background-color: #122e12;
  border: 1px solid #00C6FF;
  color: #00ff99;
  padding: 10px;
  border-radius: 8px;
  margin-top: 20px;
}

footer p {
  text-align: center;
  font-size: 0.9rem;
  background: linear-gradient(90deg, #00C6FF, #9D50BB);
  background-clip: text;
  color: transparent;
  font-weight: bold;
  margin: 20px 0;
}
