body {
  margin: 0;
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: black;
  color: white;
  text-align: center;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

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

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

fieldset {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.05);
}

legend {
  font-weight: bold;
  color: #ddd;
}

label {
  display: block;
  margin: 8px 0;
  font-size: 15px;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  margin-top: 5px;
}

input[type="email"] {
  background-color: #f2f2f2;
  color: black;
}

textarea {
  resize: vertical;
  background-color: #f2f2f2;
  color: black;
}

button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid white;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

button:hover {
  background: rgba(255, 255, 255, 0.25);
  color: black;
  border-color: black;
}

.flat-button {
  display: inline-block;
  margin: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid white;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

.flat-button:hover {
  background: rgba(255, 255, 255, 0.3);
  color: black;
  border-color: black;
}

.utility-buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.utility-button {
  background-color: transparent;
  color: #ccc;
  border: 1px solid #777;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 60%;
  max-width: 300px;
  text-align: center;
}

.utility-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}
