body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.booking-section {
  background: url('img/Hotel\ booking\ background.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  background: rgba(0, 25, 61, 0.7);
  padding: 30px;
  max-width: 450px;
  color: #fff;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.4;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  font-size: 14px;
  margin-top: 10px;
}

input, select, textarea {
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.row > div {
  flex: 1;
}

button {
  margin-top: 20px;
  background-color: #007bff;
  color: #fff;
  padding: 12px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}
