body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f4f8;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
h1 {
  margin-bottom: 20px;
  color: #333;
}
form {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}
fieldset {
  border: none;
}
legend {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #007acc;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
label {
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="text"],
input[type="email"],
input[type="password"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.gender-options {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}
button {
  padding: 12px 20px;
  background-color: #007acc;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
}
button:hover {
  background-color: #005f99;
}