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;
}

.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;
}
.navbar {
    flex-wrap: wrap;
}

    /* Fix navbar wrapping inside modal */
    .navbar .btn {
        white-space: nowrap;
    }

    .navbar .d-flex {
        row-gap: 8px;
    }

@media (max-width: 991px) {
    .navbar .d-flex {
        align-items: flex-start !important;
    }
}
/* FOOTER MODERN STYLE */
footer {
    background: #000;
    color: #ccc;
    border-top: 1px solid #ffc107;
}

    footer h5 {
        color: #ffc107;
        margin-bottom: 15px;
    }

    footer a {
        color: #ccc;
        text-decoration: none;
        transition: 0.3s;
    }

        footer a:hover {
            color: #ffc107;
        }

    footer hr {
        border-color: #ffc107;
        opacity: 0.3;
    }

.section-divider {
    width: 90%;
    margin: 50px auto;
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #ffc107, transparent);
    opacity: 0.7;
}