/* 🌸 Girly Aesthetic Negin Pizza Form */
body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  background-color: #ffeef5;
  color: #444;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  color: #e75480;
  margin-top: 30px;
  letter-spacing: 1px;
}

h2 {
  color: #d44d7f;
  border-bottom: 2px dashed #f7a6c7;
  padding-bottom: 4px;
  margin-top: 25px;
}

form {
  max-width: 600px;
  margin: 25px auto 40px;
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

label {
  display: block;
  margin-top: 12px;
  font-weight: 500;
  color: #444;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid #f6b6d5;
  border-radius: 8px;
  background-color: #fff9fb;
  font-size: 15px;
  transition: 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: #e75480;
  outline: none;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(231, 84, 128, 0.4);
}

textarea {
  resize: vertical;
}

.toppings label {
  display: inline-block;
  width: 48%;
  margin-bottom: 5px;
}

input[type="checkbox"] {
  margin-right: 6px;
  accent-color: #e75480;
}

/* 🌼 Error messages */
.error {
  color: #ff3860;
  font-size: 0.9em;
  margin-top: 3px;
}

.error-input {
  border-color: #ff3860 !important;
  background-color: #ffe9ef;
}

/* 🍰 Submit Button */
input[type="submit"] {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #e75480;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

input[type="submit"]:hover {
  background-color: #d44d7f;
  transform: scale(1.02);
}

form:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

footer {
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}
