/* Food background */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url("https://images.unsplash.com/photo-1600891964599-f61ba0e24092")
      center/cover no-repeat fixed;
}

/* Blur layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  backdrop-filter: blur(5px) brightness(0.75);
  z-index: -1;
}

/* Form box */
.container {
  width: 90%;
  max-width: 420px;
  background: #ffffffdd;
  padding: 22px;
  margin: 25px auto;
  border-radius: 14px;
  box-shadow: 0 4px 20px #00000040;
}

h2 {
  text-align: center;
  margin-bottom: 18px;
  color: #d00000;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0 15px;
  border: 1px solid #ffb3b3;
  border-radius: 8px;
  font-size: 15px;
}

button {
  width: 100%;
  background: #d00000;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
}

button:hover {
  background: #a50000;
}

.success {
  display: none;
  text-align: center;
  color: green;
  margin-top: 10px;
  font-size: 16px;
}

/* Mobile view */
@media (max-width: 480px) {
  .container {
    padding: 18px;
  }
}
