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;
}

.store-links img {
    width: 150px;
    margin: 10px;
    cursor: pointer;
}

.navbar-custom {
    background-color: #2C3E52;
    color: #FAB518;
    display: flex !important;
    align-items: center !important;
    height: auto;
}

    .navbar-custom .navbar-brand,
    .navbar-custom .nav-link {
        color: #FAB518 !important;
    }

        .navbar-custom .nav-link:hover {
            color: #FFD700; /* A brighter shade of yellow for hover */
            text-decoration: underline; /* Optional: underline on hover */
        }

    .navbar-custom .nav-logo{
        display:flex
    }

    .navbar-custom .nav-alink{
        margin-top: 13px;
        margin-right: 5px;
    }

    .navbar-custom .navbar-brand {
        font-size: 17px;
    }

.form-input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.form-container {
    width: 400px;
    margin: 0 auto;
    margin-top:30px;
}

    .form-container div {
        margin-bottom: 15px;
    }