html {
  font-size: 16px;
}

@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: #E0F2F7;
}

.content-box {
  background-color: #F9F9F9;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Custom styles for info section */
.info-section-custom ul li {
    margin-bottom: 0.75rem;
}

.info-section-custom p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Custom styles for form clarity */
.form-label-large {
    font-size: 1.15rem; /* Larger font size for labels */
    font-weight: 500;   /* Slightly bolder labels */
}

/* General styles for visual hierarchy */
main[role="main"] {
    padding-top: 1.5rem; /* Corresponds to Bootstrap's pt-4 */
    padding-bottom: 1.5rem; /* Corresponds to Bootstrap's pb-4, overriding existing pb-3 */
}