body {
  font-family: Arial, sans-serif;
  background-color: #000000;
}

form {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 0 auto;
}

form label {
  display: block;
  margin-bottom: 5px;
  color: #4CAF50;
}

form input[type="text"],
form select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
}

form input[type="radio"],
form input[type="checkbox"] {
  margin-right: 5px;
}

label {
  display: block;
  margin-bottom: 5px;
}

h1 {
  text-align: center;
  color: #4CAF50;
  margin-top: 50px;
}

legend {
  font-size: 18px;
  margin-bottom: 10px;
  color: #4CAF50;

}
input[type="file"] {
  display: block;
  margin-bottom: 10px;
}
input[type="text"],
select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 5px;
}

input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #45a049;
}
