body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #910505, #ff6600);
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.logo {
  width: 120px;
  margin-bottom: 15px;
}

h1 {
  color: #000000;
}

label {
  display: block;
  text-align: left;
  margin-top: 10px;
  font-weight: bold;
}

input,
select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

button {
  width: 100%;
  background-color: #730099;
  color: white;
  border: none;
  padding: 12px;
  margin-top: 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background-color: #ff6600;
}

#thankYouMessage {
  color: #008000;
  font-weight: 600;
  margin-top: 20px;
}

.hidden {
  display: none;
}
