
body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

h1, p {
  text-align: center;
}

form {
  max-width: 600px;
  margin: 20px auto;
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

fieldset {
  border: none;
  padding: 0;
  margin-top: 15px;
}

legend {
  font-weight: bold;
  margin-bottom: 10px;
}

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

button {
  width: 100%;
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 20px;
}

button:hover {
  background-color: #0056b3;
}


@media (max-width: 600px) {
  form {
    padding: 20px;
  }

  h1 {
    font-size: 1.5rem;
  }

  button {
    font-size: 1rem;
  }
}
