:root {
    --navbar-background: #f2f2f2;
    --btn-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    --btn-primary-color: #60cefe;
    --btn-light-color: #ffffff;
}

nav.navbar {
    background: #f2f2f2;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    width: 100%;
    padding: 18px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: sticky;
    top: 0;
    /* padding: 5px 0; */
    z-index: 999;
}

nav.navbar a {
    font-size: 18px;
    color: black;
    text-decoration: none !important;
}

nav.navbar a:hover {
    text-decoration: none !important;
}

.navbar-right ul {
    display: flex;
    gap: 20px;
}

.navbar-right ul li a {
    padding: 10px 20px;
    width: 140px;
    border-radius: 100px;
    box-shadow: var(--btn-box-shadow);
    font-weight: 400;
    font-size: 18px;
}

.navbar-right ul a.login-link {
    background-color: #3F8CB6;
    color: var(--btn-light-color);
}

.navbar-right ul a.test-link {
    color: black;
}

.navbar span {
    font-size: 36px;
    font-family: "Inter", sans-serif;
    justify-self: flex-start;
}

.navbar-back-step{
    font-size: 30px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.navbar-back-step-btn{
    cursor: pointer;
    border: none;
    outline: none;
}

.hamburgercheck {
    display: none;
}

.hamburger {
    cursor: pointer;
    display: none;
}

.hamburgercheck:checked ~ .navbar-right {
    height: 100%;
}

@media (max-width: 640px) {
    .navbar-right {
        height: 0;
        overflow: hidden;
    }
    nav.navbar {
        display: block;
    }
    .navbar-left {
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .hamburger {
        display: block;
        font-size: 24px;
    }

    .navbar-right ul {
        padding: 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        width: 100%;
    }

    .navbar-right ul li {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar-right ul li a {
        width: 300px;
        text-align: center;
    }
}
