.form-container {
  /* max-width: 800px; */
  margin: 0 auto;
  padding: 1rem;
  background-color: #f8f9facd;
  border-radius: 0.25rem;
}

.form-group {
  margin-bottom: 1rem;
  margin-right: 1rem;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-label {
  margin-bottom: 0;
}

/* .form-group input[type="radio"] {
  margin-right: 10px;
} */

/* .form-group label {
  cursor: pointer;
  display: inline;
} */

.form-group p {
  margin: 5px 0 0 0;
  font-size: 12px;
  color: #6c757d;
}

/* .form-control-radio {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.form-control {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  gap: 10px;
} */
.form-row .form-group {
  flex: 1 1 0;
  /* min-width: 0; */
  /* Allow shrinking */
  /* width: auto; */
  /* Remove width: 100% */
  /* margin-right: 0; */
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  /* Allow wrapping on small screens */
  gap: 10px;
  width: 100%;
}

.form-row .form-group {
  width: 100%;
  margin-right: 0;
  flex: 1 1 0;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #007bff;
  color: white;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background-color: #5a6268;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.hidden {
  display: none;
}

section h2 {
  position: relative;
  /* Ensure the h2 is the reference point for the ::after element */
  display: inline-block;
  /* Keep the heading inline for proper alignment */
  margin-bottom: 10px;
  /* Add spacing below the heading */
  color: #09373f;
  font-weight: 700
}

h4 {
  color: #09373f;
  font-weight: 700;
}


header {
  background: var(--light-gradient,
      linear-gradient(223deg, #e6ecff 25.04%, #dbe5ea 76.92%));
}

header .bx.bx-home {
  font-size: 24px;
  color: var(--navbar-text-color);
}

.brand {
  color: #09373f;

  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  /* line-height: normal; */
}

.brand-box {
  gap: 0.5rem;
}

main {
  background: #d2d5da;
}

span.form-text {
  font-style: italic;
}

/* placeholder text inside inputs should be lighter */
input::placeholder {
  color: #6c757d;
}

label {
  font-weight: 600;
}

.document-list {
  list-style-type: disc !important;
  padding-left: 2rem !important;
  margin-left: 0 !important;
  /* Ensure bullets show up */
  display: block !important;
}

.document-list li {
  display: list-item !important;
  list-style-type: disc !important;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .form-row {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .form-group {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0.5rem 0;
  }
}

@media (max-width: 768px) {
  .form-group {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0.5rem 0;
  }
}

@media screen and (max-width: 744px) {
  .navbar {
    background: var(--light-gradient,
        linear-gradient(223deg, #e6ecff 25.04%, #dbe5ea 76.92%));
  }
}

@media screen and (max-width: 680px) {
  section h2::after {
    width: 90%;
  }
}