.navbar {
    border-radius: 34px;
    position: fixed !important; /* or absolute */
    margin: auto;
    top: max(18px, env(safe-area-inset-top));
    margin-top: 0;
    left: 0;
    right: 0;
    transition-duration: 0.4s !important;
    z-index: 99;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 1));
    backdrop-filter: blur(15px) saturate(2);
    border: solid 0.5px rgb(255, 255, 255);
    padding: 0 15px !important;
    width: min(760px, 90vw);
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.12);
}

.navbar-nav {
    padding: 0 10vw;
}

.navbar-text {
    color: rgba(11, 11, 11, 0.9) !important;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-decoration: none;
    border-radius: 18px;
    padding: 10px 10px;
    transition-duration: 0.2s;
    &:hover {
        background-color: rgba(255, 255, 255, 0.5);
    }
}

@media (max-width: 991px) {
    .login-wrapper {
        margin-bottom: 1rem;
    }
}

.navbar-toggler,
.navbar img {
    margin-right: 15px;
}

li {
    margin-inline-start: unset;
    margin: 1px 5px;
}