.form-container {
  max-width: 1000px; /* Increased width of the form */
  margin: 50px auto;
  padding: 30px; /* Increased padding */
}

label {
  margin-top: 15px; /* Spacing above labels */
  display: block; /* Ensure labels are block elements */
  color: black; /* Slightly lighter color for labels */
  font-size: 13px;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="number"],
select {
  width: 70%; /* Set to 70% of the form container */
  padding: 12px; /* Increased padding */
  margin: 10px 0 20px; /* Increased spacing between inputs */
  border: 1px solid #a0ce4e; /* Lighter border */
  border-radius: 4px;
  font-size: 16px; /* Increased font size */
  box-sizing: border-box; /* Include padding and border in width */
  transition: border-color 0.3s; /* Transition effect */
}
input[type="range"] {
  width: 60%; /* Set to 60% of the form container */
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
select:focus {
  outline: none; /* Remove default outline */
}

.radio-group,
.provider-group {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap */
  gap: 20px; /* Add space between items */
  margin-bottom: 20px; /* Add spacing below groups */
}

.provider-logo {
  width: 60px; /* Increased size of logos */
  height: auto;
  margin-right: 10px;
}

.policy-group {
  display: flex;
  align-items: center;
  margin: 15px 0; /* Increased margin */
}

.policy-group input[type="checkbox"],
.policy-group input[type="radio"] {
  margin-right: 10px;
}

/* Flexbox for radio buttons in the same line */
.policy-group input[type="radio"] + label {
  margin-right: 20px;
}

.btn {
  background-color: #a0ce4e; /* Primary button color */
  color: white;
  padding: 12px 20px; /* Increased button padding */
  border: 1px solid;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px; /* Increased button font size */
  margin-top: 20px; /* Spacing above buttons */
  transition: background-color 0.3s, transform 0.2s; /* Add hover effects */
}

.btn:hover {
  background-color: #678b28; /* Darker blue on hover */
  transform: translateY(-2px); /* Slight lift on hover */
}

.btn:active {
  transform: translateY(0); /* Reset lift on click */
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .form-container {
    width: 80%; /* Take up more width on mobile */
  }

  input[type="text"],
  input[type="email"],
  select {
    width: 100%; /* Full width on mobile */
  }

  .btn {
    width: 100%; /* Full width buttons on mobile */
  }
}

/* Flexbox for radio button group */

/* Flexbox for provider group */

.error {
  color: red;
  margin-top: -10px;
}
.form-step {
  text-align: center;
}
