/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    margin-bottom: 60px;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
}

header .navbar-brand {
    font-size: 24px;
    color: #0d6efd;
}

header .nav-link {
    color: #0d6efd;
}

    header .nav-link:hover {
        text-decoration: underline;
    }

.footer {
    color: #6c757d;
}


html {
    position: relative;
    min-height: 100%;
    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;
}

.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;
}

.required-label::after {
    content: ' *';
    color: red;
    font-weight: bold;
}