body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('pizza.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}


.logo-header {
  text-align: center;
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent background to contrast */
  //position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-image {
  max-width: 90%;
  height: auto;
  max-height: 220px; /* prevents it from getting too tall */
}


h1 {
  text-align: center;
  padding: 1rem;
  margin: 0;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px #000;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
}

.card {
  background: rgba(0, 0, 0, 0.75);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  width: 25%;
  max-width: 600px;
}

.card h2 {
  text-align: center;
  color: #ffdd99;
  margin-bottom: 1rem;
}

label {
  font-weight: bold;
  margin-top: 1rem;
  display: block;
  color: #ffd;
}

input, select {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

button {
  background: #ff5733;
  color: white;
  font-weight: bold;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  width: 100%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #e8471d;
}
