body {
    width: 100vw;
    height: 100vh;
    background-image: url("bg-mobile1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.header-logo {
    width: 4.5rem;
    height: 2.813rem;
    margin-left: 0.6rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;


}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 1.5rem;
    height: 0.18rem;
    margin: 0.31rem auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    justify-content: center;
    margin-right: 50px;

}

.nav-item {
    margin-left: 20px;
    margin-right: 20px;
}

.nav-link {
    font-size: 18px;
    font-weight: "medium";
    font-family: "Poppins";
    color: #FFFFFF;
}

.nav-link:hover {
    color: #7f7f7f;
}

.nav-logo {
    font-size: 2.1rem;
    font-weight: 500;
    color: #482ff7;
}

#mainDiv {
    display: flex;
    align-items: center;
    justify-content: center;

}

#login-div {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    opacity: 100%;
    width: 45vh;
    height: max-content;
    border-radius: 0.6rem;
    justify-content: center;
    align-items: center;
    padding: 30px;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.479);
    /* border-radius: 16px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    border: 1px solid rgba(255, 255, 255, 0.798);
}

#txt1 {
    font-family: "Montserrat";
    font-size: 1.5rem;
    font-weight: 700;
    color: black;
}

#txt2 {
    font-family: "Montserrat";
    font-size: 1.0rem;
    margin-top: -14px;
    font-weight: 500;
    color: rgb(76, 76, 76);
}

#forgot-password-txt {
    font-family: "Montserrat";
    font-size: 1.0rem;
    font-weight: 500;
    color: rgb(76, 76, 76);

    text-align: center;
    margin-top: 20px;


}

#signupTxt1 {
    font-family: "Montserrat";
    font-size: 1.0rem;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    color: rgb(106, 106, 106);
    ;
}

#signupTxt {
    font-family: "Montserrat";
    font-size: 1.0rem;
    font-weight: 800;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    color: rgb(38, 103, 160);


}

#signupTxt:hover {
    color: rgb(11, 66, 114);
    transform: scale(5.050);
}

#emailInputField {
    height: 56px;
    font-family: "poppins";
    color: black;
    z-index: 1000;

}

#passwordInputField {
    height: 56px;
    font-family: "poppins";
    color: black;

}

#signInBtn {
    height: 3.5rem;
    font-family: "poppins";
    font-size: 18px;
    width: 100%;
    color: #ffffff;
    border: none;
    background-color: #00A567;
    transition: all .2s ease-in-out;
}

#signInBtn:hover {
    background-color: #008451;
    transform: scale(1.015);
    color: white;
}


/* // `xs` returns only a ruleset and no media query */


/* `sm` applies to x-small devices (portrait phones, less than 576px) */
/* @media (max-width: 575.98px) {
    #login-div {
        width: 30vh;
        height: 50vh;
        background-color: #00A567;

    }

    #txt1 {
        font-family: "Montserrat";
        font-size: 18px;
        font-weight: 700;
        color: black;
    }

    #txt2 {
        font-family: "Montserrat";
        font-size: 12px;
        margin-top: -18px;
        font-weight: 500;
        color: rgb(95, 95, 95);
    }

    #forgot-password-txt {
        font-family: "Montserrat";
        font-size: 12px;
        font-weight: 500;
        color: rgb(95, 95, 95);

        text-align: center;
        margin-top: 10px;


    }



    #passwordInputField {
        height: 45px;
        font-family: "poppins";
        font-size: 12px;
        color: black;
        margin-top: -10px;

    }


    #signInBtn {
        height: 45px;
        font-family: "poppins";
        font-size: 14px;
        width: 100%;
        border: none;
        color: #ffffff;
        background-color: #00A567;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: #fff;
        opacity: 100%;
        width: 100%;
        border-radius: 0px;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
        color: blue;
        font-size: 10px;
    }

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

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-link {
        font-size: 18px;
        font-weight: "medium";
        font-family: "Montserrat";
        font-weight: bolder;
        color: #000000;
    }
} */

/* #login-div {
        width: 43vh;
    }
} 
    /* }


/* `md` applies to small devices (landscape phones, less than 768px) */
/* @media only screen and (max-width: 767.98px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: #fff;
        opacity: 100%;
        width: 100%;
        border-radius: 0px;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
        color: #000000;
        font-size: 10px;
    }

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

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-link {
        font-size: 18px;
        font-weight: "medium";
        font-family: "Montserrat";
        font-weight: bolder;
        color: #000000;
    }



    #login-div {
        width: 10vh;
        min-height: 52vh;

    }
} */

/* `lg` applies to medium devices (tablets, less than 992px) */
/* @media only screen and (max-width: 1025px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: #fff;
        opacity: 100%;
        width: 100%;
        border-radius: 0px;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
        color: blue;
        font-size: 10px;
    }

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

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-link {
        font-size: 18px;
        font-weight: "medium";
        font-family: "Montserrat";
        font-weight: bolder;
        color: #000000;
    }

    #login-div {
        width: 48vh;
        height: 35vh;

    }


} 

/* `xl` applies to large devices (desktops, less than 1200px) */
/* @media only screen and (max-width: 1199.98px) {} */
@media only screen and (max-width: 575.98px) {
    #signInBtn {
        height: 45px;
        font-family: "poppins";
        font-size: 16px;
        width: 100%;
        color: #ffffff;
        border: none;
        background-color: #00A567;
        transition: all .2s ease-in-out;
    }

    #login-div {
        min-width: 100%;
        width: 40vh;
        height: max-content;

    }

    #emailInputField {
        height: 45px;
        font-family: "poppins";
        color: black;
        font-size: 16px;
        z-index: 1000;

    }

    #passwordInputField {
        height: 45px;
        font-size: 16px;
        font-family: "poppins";
        color: black;

    }
}

/* // Small devices (landscape phones, 576px and up) */
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
    #signInBtn {
        height: 45px;
        font-family: "poppins";
        font-size: 16px;
        width: 100%;
        color: #ffffff;
        border: none;
        background-color: #00A567;
        transition: all .2s ease-in-out;
    }

    #login-div {
        min-width: 100%;
        width: 40vh;
        height: max-content;

    }

    #emailInputField {
        height: 45px;
        font-family: "poppins";
        color: black;
        font-size: 16px;
        z-index: 1000;

    }

    #passwordInputField {
        height: 45px;
        font-size: 16px;
        font-family: "poppins";
        color: black;

    }

    #login-div {
        min-width: 100%;
        width: 40vh;
        height: max-content;

    }
}

/* // Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #login-div {
        min-width: 100%;
        width: 40vh;
        height: max-content;

    }
}

/* // Large devices (desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {}

/* // Extra large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}