body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 20px;
  background-color: #f0f0f0;
}

/* Add a new style for the title */
h1 {
  text-align: center;
  color: #3f51b5;
}
h2{
  text-align: left;
}
label{
  font-weight: bold;
}
a{
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  color: #3f51b5;
}
.spec{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.spec-sec{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
form {
  max-width: 780px; /* Increase the max-width to make the form 1.3 times larger */
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px; /* Increase the padding for more spacing within the form */
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  display: flex; /* Use flexbox to arrange items in a column */
  flex-direction: column; /* Arrange items vertically */
}

/* Extend the white area further down by adding margin at the bottom */
form {
  margin-bottom: 40px;
}

form p {
  font-weight: bold;
  margin-bottom: 10px;
  /* color: #3f51b5;  */
}

input[type="text"],
input[type="date"],
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 5px;
}

.gender-input-group label {
  margin-right: 15px;
}

button[type="submit"] {
  padding: 10px 15px;
  background-color: #3f51b5; /* Blue color for the submit button */
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: auto; /* Push the submit button to the bottom of the form */
  align-self: flex-end; /* Align the submit button to the right */
}

button[type="submit"]:hover {
  background-color: #2c3e50; /* Darker shade of blue on hover */
}

/* Responsive styles */
@media (max-width: 768px) {
  form {
    max-width: 100%;
  }
}
