/* Base font size */
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* Focus styles */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem rgba(37, 140, 251, 0.5), 0 0 0 0.25rem rgba(37, 140, 251, 0.25);
}

html {
  position: relative;
  min-height: 100%;
}

#FooterIndexMain{
    color: white;
}

body {
  margin-bottom: 60px;
}

/* Form placeholder styling */
.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Main content padding to account for fixed navbar */
.main-content {
  padding-top: 70px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .main-content {
    padding-top: 60px;
  }
}
