html {
  font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
    .custom-form-container {
        max-width: 50%; /* Restricts form's max width to half of the screen on larger devices */
    }
}

.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;
}

.custom-form-container {
    margin-left: 10px; /* Adjusts the form's left margin for spacing from the left edge */
}

.custom-row {
    margin-bottom: 0.5rem; /* Reduces space between rows for a tighter layout */
}

.custom-label {
    padding-right: 0.5rem; /* Adjusts space to make labels closer to inputs */
    font-weight: bold; /* Makes labels bold */
}

h3 {
    color: whitesmoke;
    font-weight: bold;
}

