/* push content away from header/footer */
.page-content {
  padding-top: 80px;    /* header height */
  padding-bottom: 60px;  /* footer height */
  color: white;
}

.page-content section {
  max-width: 600px;    /* limit line length */
  margin: 0 auto;       /* center horizontally */
  padding: 2rem 1rem;   /* vertical + some horizontal breathing room */
  scroll-margin-top: 132px;  /* ≈ your header height */
  text-align: justify;
}

.page-content a { color: white; }


/* center the form */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

/* each row stacks label + field */
.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-row label {
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: white;
}

/* make all inputs + textarea fill the width */
.form-row input,
.form-row textarea {
  width: 100%;
  font-size: 1.6rem;
  padding: 0.5rem;
  box-sizing: border-box;
}

/* style the button */
.form-row button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background: #0096c7;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-row button:hover {
  background: #007fa1;
}

/* override the column layout just for the checkbox row */
.form-row--checkbox {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;       /* vertical align */
  justify-content: flex-start;
  gap: 0.5rem;               /* nice small gap */
  margin-bottom: 1rem;
}

/* enlarge the box but kill its default margins */
.form-row--checkbox input[type="checkbox"] {
  transform: scale(1.8);
  margin: 0;
  transform-origin: 0 0;
}

/* style the label text */
.form-row--checkbox label {
  margin: 0;                 /* no extra top/bottom margin */
  font-size: 1.125rem;
  color: white;
}

/*
.page-content h2 { color: #fff; }
*/
/*
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
*/
.portal-btn {
  margin-left: auto; /* push this to far right */
}

.portal-btn a {
  background-color: #4CAF50;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.portal-btn a:hover {
  background-color: #45a049;
}

.mobile-nav .portal-btn {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav .portal-btn a {
  display: block;
  padding: 10px 16px;
  margin: 8px auto;
  background-color: #28a745; /* green */
  color: white;
  text-align: center;
  font-weight: bold;
  border-radius: 6px;
  width: 80%; /* or 100% if you want full-width */
  text-decoration: none;
}
