html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
    color: #333;
    font-family: Tahoma, serif;
}

.form-control {
    border-radius: 0rem;
    border-color: #ababab;
}

input[type=button], input[type=reset], input[type=submit], button {
    border-radius: 0rem;
    min-width: 6em;
    padding: 7px 10px;
    border: 1px solid #ababab;
    background-color: #fdfdfd;
    color: #444;
}

.h1, h1 {
    color: #24477c;
    font-size: 2.4em;
    font-weight: normal;
    font-family: Tahoma, serif;
}

.h2, h2 {
    color: #24477c;
    font-size: 1.75em;
    line-height: 1.75;
}

.required-label::after {
    content: "*"; /* Adds an asterisk after the content */
    color: red; /* Sets the asterisk color to red */
}