body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  font-family: "Inter", "Segoe UI", sans-serif;
  background:
    radial-gradient(900px 380px at 12% -8%, rgba(160, 82, 45, 0.25), transparent 60%),
    radial-gradient(1000px 460px at 100% 120%, rgba(111, 78, 55, 0.20), transparent 60%),
    url('../../admin/images/image_3.jpg') no-repeat center center/cover;
}

.search-container {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e6d7c3;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}

h2 {
  margin: 0 0 8px 0;
  text-align: center;
  color: sienna;
  font-size: 32px;
}

.search-container::after {
  content: "Track your guest order by surname and invoice";
  display: block;
  text-align: center;
  margin-bottom: 18px;
  color: #6f5a49;
  font-size: 15px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #5e3f2b;
  font-weight: bold;
  letter-spacing: 0.2px;
}

input[type="text"] {
  width: 100%;
  padding: 11px 12px;
  margin-bottom: 14px;
  border: 1px solid #d8c7b2;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  box-sizing: border-box;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus {
  outline: none;
  border-color: sienna;
  box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.18);
}

button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #a45f39, #8b4513);
  color: #fff4e5;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(76, 42, 21, 0.28);
}

@media (max-width: 540px) {
  .search-container {
    padding: 22px;
    border-radius: 14px;
  }

  h2 {
    font-size: 28px;
  }
}
