body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

p {
  font-size: 1rem;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
  font-size: 1rem;
}

input, textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
}

textarea {
  resize: vertical;
}

button {
  padding: 10px;
  background: #fca311;
  color: #000;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #ffba08;
}

#message {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #fca311;
}

.consent {
  margin: 10px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.consent input {
  margin-right: 10px;
}
