body {
  font-family: Arial, sans-serif;
  background-blend-mode: darken;
  background-image: url('https://media.istockphoto.com/id/1254973568/photo/empty-airport-terminal-lounge-with-airplane-on-background.jpg?s=612x612&w=0&k=20&c=WoX_hcz_igZ1NNRlwwR9Cc_EjjL4Ncf_hoTMDatg2AU=');
  height: 98vh;
  display: flex;
  justify-content: center;
  background-size: contain;
  align-items: center;
  background-color: rgb(179, 167, 167);


  
}

.container {
  background: white;
  padding: 25px;
  border-radius: 15px;
  width: 350px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

h1 {
  text-align: center;
  color: #0077b6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, button {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  background-color: #0077b6;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #005f8d;
}

.preview {
  margin-top: 20px;
  background: #f8f8f8;
  padding: 10px;
  border-radius: 8px;
}
