

.navbar-top-row {
    display: grid;
    grid-template-columns: 1fr 5fr 1fr;
    font-weight: bold;
    margin: 1vh;
    margin-top: 0;
    background-color: black;

}

.navbar-logo-container {
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1vh;
}

.logo-anchor {
    width: 70%;
}

.navbar-logo-img {
    width: 17vw;
    -webkit-filter: drop-shadow(.1vh .1vh .1vh #222);
    filter: drop-shadow(.1vh .1vh .1vh #222);
    transition: 0.1s;
}

.navbar-logo-img:hover {
    transform: scale(1.04);
    -webkit-filter: drop-shadow(.2vh .2vh .1vh #222);
    filter: drop-shadow(.2vh .2vh .1vh #222);
}

.user-container {
    display: flex;
    flex-direction: column;
    font-size: 1.4vh;
    font-weight: bold;
    padding-top: 1vh;
}

.user-img-container {
    display: flex;
    margin-top: 1vh;
    flex: 1;
    align-items: end;
    justify-content: center;
}

.user-anchor {
    height: 100%;
}

.user-img {
    height: 6vh;
    margin: auto;
    -webkit-filter: drop-shadow(.1vh .1vh .1vh #222);
    filter: drop-shadow(.1vh .1vh .1vh #222);
    transition: 0.14s;
}

.user-img:hover {
    transform: scale(1.04);
    -webkit-filter: drop-shadow(.2vh .2vh .1vh #222);
    filter: drop-shadow(.2vh .2vh .1vh #222);
}

.login-container {
    flex: 1;
    margin-top: .5vh;
}

.login-link {
    color: white;
    text-decoration: none;
    transition: 0.12s;
    padding: .4vh;
}

.login-link:hover {
    transform: scale(1.07);
    color: rgb(245, 243, 243);
}

.menu-toggle {
    width: 5vh;
    height: 3vh;
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    align-items: center;
    z-index: 2;
    margin-right: 2vw;
}

nav .bar {
    width: 100%;
    height: .6vh;
    background-color: var(--bt-blue);
    position: absolute;
    transition: 0.4s;
    border-radius: .3vh;
}

.menu-toggle .top {
    top: 0;
}

.menu-toggle .middle {
    top: 50%;
    transform: translateY(-50%);
    transition: .58s;
}

.menu-toggle .bottom {
    bottom: 0;
}

.menu-toggle.open .top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-radius:2vh;
}


.menu-toggle.open .middle {
    width: 0;
    transition: .3s;
}

.menu-toggle.open .bottom {
    top: 50%;
    border-radius:2vh;
    transform: translateY(-50%) rotate(-45deg);
}

.menu-container {
    display: none;
    flex-direction: column;
    position: relative;
    width: 25vw;
}

.menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    width: 0;
    height: 100vh;
    z-index: 1;
    transition: 0.5s;
    overflow: hidden;
    border-radius: 0 0 1vh 1vh;
    color: var(--text-gray);
    padding-top: 11vh;
    font-weight: bold;
    transition: width 0.3s ease;


}

.menu.open {
    width: 35vw;
    box-shadow: -1vh -1vh 1vh rgba(0, 0, 0, 0.4), inset 1vh -1vh 1vh rgba(0, 0, 0, 0.147);
    border-left: 1vh solid var(--bt-blue);
}

.menu a {
    text-decoration: none;
    font-size: 2vw;
    transition: 0.12s;
    text-align: left;
    margin-left: 3vw;
    color: rgba(255, 255, 255, 0);
}



.menu.open a, .menu.open hr {
    color: var(--text-gray);
}

.menu hr {
    width: 55%;
    margin: 0;
    border: 1px solid var(--bt-gray);
    margin-bottom: 6vh;
    margin-left: 3vw;
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0);
}

.menu.open hr {
    width: 55%;
    border-top: 2px solid var(--bt-gray);
}

.menu img {
    width: 7vh;
    margin: auto;
    transition: 0.14s;
    opacity: 0;
}

.menu.open img {
    opacity: 1;
}

.menu span {
    margin: auto;
    display: flex;
    flex-wrap: nowrap;
}

.menu .login-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: fit-content;
    font-size: 3vw;
}

.menu .login-profile img {
    width: 10vh;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.205);
}

.menu .login-profile a {
    font-size: 4vw;
}

.pages-row-container {
    width: 100%;
    font-size: 1.8vh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin: auto;
    margin-bottom: 0;
}

.second-column-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    width: 100%;
    margin: auto;
}

.page-link {
    color: white;
    text-decoration: none;
    transition: 0.12s;
}

.page-link:hover {
    transform: scale(1.02);
    color: rgb(245, 243, 243);
}

.reg-input-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: auto;
}



.reg-input {
    text-transform: uppercase;
    font-size: 2vh;
    color: var(--text-gray);
    flex: 1;
    width: 100%;
    height: 3vh;
    border-radius: .5vh;
    border: none;
    text-align: center;
    transition: 0.1s;
}

.submit-container {
    flex: 2;
    display: flex;
    align-items: center;
    height: 3vh;
    margin: 0px;
}


.reg-input::placeholder {
    font-size: 2vh; 
    text-transform: uppercase;
}

.submit-img-container {
    margin: auto;
    margin-left: 1vh;
    background-color: white;
    height: 3vh;
    width: 3vh;
    border-radius: .5vh;
    border: none;
    transition: 0.12s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-img-container:hover {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
    background-color: rgb(246, 246, 246);    
    border-color: var(--bt-hover-blue);
}

.reg-submit[type="image"] {
    height: 2.2vh;
    width: auto;
}


span {
    text-align: center;
}

h3 {
    text-align: center;
}

.profile-image {
    width: 3vh;
    height: auto; 
    border-radius: 50%; 
    overflow: hidden;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.4);
}
.login-container {
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 2000px) {
    .pages-row-container .page-link {
        font-size: 30px;
    }

    .login-link:hover {
        font-size: 1.6vh;
    }
    
}

@media screen and (max-width: 900px) {
    .pages-row-container .page-link {
        font-size: 1.5vw;
    }
}

@media screen and (max-width: 800px) {
    .pages-row-container {
        display: none;
    }

    .menu-container {
        display: flex;
    }

    .user-container {
        display: none;
    }

    .navbar-logo-container {
        width: 25vw;
    }

    .navbar-logo-img {
        width: 17vw;
    }

    .reg-input-container {
        width: 20vw;
        height: 5vw;
    }

    .reg-input {
        width: 20vw;
        height: 100%;
        padding: 0;
        margin-left: 4vw;
    }

    .submit-container {
        height: 100%;
    }

    .submit-img-container {
        height: 100%;
        width: auto;
    }

    .reg-input::placeholder {
        font-size: 3vw; 
    }

    .reg-submit[type="image"] {
        height: 100%;
    }




    nav {
        height: 9vh;
    }

    body {
        margin-top: 9vh;
    }

}

@media screen and (max-height: 500px) and (orientation: landscape) {
    .reg-input-container {
        height: 5vh;
    }

    .reg-input::placeholder {
        font-size: 1.5vw; 
    }
}