:root,
[data-bs-theme='light'] {
    --bs-primary: hsl(209, 100%, 41%);
    --bs-primary-rgb: 0, 108, 209;
    --bs-dark: #141619;
    --bs-dark-rgb: 20, 22, 25;
    --bs-light: #ebf5ff;
    --bs-light-rgb: 235, 245, 255;
}

body {
  font-size: 1rem;
  @media (min-width: 576px) {
    font-size: 1.25rem;
  }
}

header input:focus,
header a:focus-visible,
header .btn:focus-visible,
.btn-check:checked:focus-visible+.btn {
  box-shadow: 0 0 2px 6px rgba(255, 255, 255, 0.6);
  outline: 2px solid var(--bs-primary);
  outline-offset: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    @media (min-width: 576px) {
      font-size: 1.25rem;
    }
}

.btn-check:checked + .btn {
    color: white;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.max-45 {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

h2 {
  margin-bottom: 1rem;
  text-wrap: balance;
}

header {
  .navbar {
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
      padding-top: 1rem;
      padding-bottom: 1rem;
  }
  
  .navbar-brand {
      margin-right: 2rem;
  }
  
  .navbar-nav {
      gap: 0.5rem;
      margin: 1rem 0;
      @media (min-width: 576px) {
        margin-left: auto;
        margin-right: auto;
      }
  }
  
  .nav-item {
    display: flex;
    align-items: center;
  }
  
  .nav-link {
    text-align: center;
    color: #FFFFFF;
      font-weight: 600;
      line-height: 1.125;
      border-radius: 999px;
      padding-left: 1rem !important;
      padding-right: 1rem !important;
      &.active {
          color: var(--bs-primary) !important;
          background-color: white;
      }
  }

  .dropdown {
    margin-left: 1rem;
    @media (min-width: 576px) {
        margin-left: auto;
    }
  }

  .dropdown-toggle {
    font-size: 1.125rem;
  }
  
  .dropdown-menu {
    min-width: 18rem;
  }
}


.preheader {
    a {
        color: var(--bs-dark);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.125rem;
        &:hover {
          text-decoration: underline;
        }
    }
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  figure {
    margin-inline: auto;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}

.grid-1-1 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  figure {
    margin-inline: auto;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}

footer {
    background-color: #0E1F33;
    font-size: 1rem;
    ul {
        list-style-type: '';
        padding: 0;
    }
    a {
        color: white;
        text-decoration: none;
        opacity: 0.66;
        &:hover {
            text-decoration: underline;
        }
    }
    img {
      max-width: 7rem;
      height: auto;
    }
}

.login-lash-form-wrapper {
  font-size: 1rem;
  .pi-form {
    display: grid;
  }
  .pi-form-label {
    font-weight: 600;
  }
  .pi-form-input {
    input[type=text],
    input[type=password] {
      font-size: 1rem;
      width: 100%;
      padding: 0.5rem 1rem;
      border: 1px solid var(--bs-dark);
      color: var(--bs-dark);
      background-color: white;
      border-radius: 0.25rem;
    }
  }
  .btn-login-lash {
    background-color: var(--bs-primary);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 0;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    &:hover {
      background-color: color-mix(in oklch, var(--bs-primary), black 20%);
    }
  }
  .pi-form-actions {
    margin-top: 1rem;
  }
  .pw-forgotten {
    margin-top: 1rem;
    text-align: center;
    a {
      display: inline-flex;
      color: var(--bs-primary);
    }
  }
  .pi-form-control__has-error {
    color: var(--bs-danger);
    .pi-message-text {
      font-weight: 600;
      margin-bottom: 1rem;
    }
  }
}

.btn-disabled {
  color: #CCC !important;
  border: 2px solid #CCC !important;
}

.btn-disabled:hover {
  background-color: #CCC !important;
  color: white !important;
  border: 2px solid #CCC !important;
  cursor: not-allowed;
  box-shadow: none;
}