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

h1 {
  text-align: center;
  margin-bottom: 20px;
}

form {
  max-width: 600px;
  margin: 30px auto;
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  border: 2px solid #77777763;
}

fieldset {
  border: 2px solid #696cff;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 15px;
}

legend {
  font-weight: bold;
  padding: 0 8px;
  color: #2b3a67;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="url"],
input[type="number"],
input[type="file"],
input[type="color"],
textarea,
select {
  background: #f0f0f0;
  border: 1px solid #333;
  border-radius: 5px;
  padding: 6px;
  margin-top: 5px;
  width: 95%;
}

textarea {
  resize: vertical;
}

input[type="submit"],
input[type="reset"] {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

input[type="submit"]:hover,
input[type="reset"]:hover {
  background: #0056b3;
}