body {
  font-family: Arial;
  background: #eef2f3;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.container {
  width: 400px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px gray;
}

h2 {
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
}

input, select, button {
  margin: 8px 0;
  padding: 10px;
}

button {
  background: #28a745;
  color: white;
  border: none;
  cursor: pointer;
}

#ticket {
  margin-top: 15px;
  padding: 10px;
  border: 1px solid #ccc;
}