@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

body {
   
    width: 100%;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: #f1f4f7;
    box-shadow: 0px 5px 20px rgba(255, 255, 255, 0.09);
    position: sticky;
    top: 0;
    left: 0;
}

#header .logo {
    width: 150px;
    height: auto;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-weight: 600px;
    font-size: 16px;
    color: #010101;
    transition: 0.3s ease;

}

#navbar li a:hover,
#navbar li a.active {
    color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background-color: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
}

#form {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 92vh;
    width: 100%;
    background-image: url('images/login2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    }

.form-box {
    position: relative;
    width: 400px;
    height: 500px;
    background-color:#6e6d6d;
    opacity: .9;
    /* border:2px solid #ffffff; */
    box-shadow: 10px 10px 30px rgba(99, 98, 98, 0.4);
    backdrop-filter: blur(100px);
    border-radius:20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

h2 {
    font-size: 2em;
    font-weight: 400;
    color: #ffff;
    text-align: center;
}

.inputbox {
    position: relative;
    margin: 30px 0;
    width: 310px;
    border-bottom: 2px solid #fff;
}

.inputbox label {
    position: absolute;
    top: 50%;
    left: 5px; 
    color: #fff;
    font-size: 1em;
    pointer-events: none;
    transition: .5s;
}

.inputbox input:focus~label,
.inputbox input:valid~label {
    transform: translateY(-50px);
}

.inputbox input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    padding: 0 35px 0 5px;
    color: #fff;
}

.inputbox i {
    position: absolute;
    right: 8px;
    color: #fff;
    font-size: 1.2em;
    top: 20px;
}

.forget {
    margin: -15px 0 15px;
    font-size: .9em;
    color: #fff;
    display: flex;
    justify-content: center;
}

.forget label input {
    margin-right: 3px;
}

.forget a {
    color: #fff;
    text-decoration: none;
}

.forget a:hover {
    text-decoration: underline;
}

button {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    color: #fff;
    background-color:transparent;
    /* backdrop-filter: blur(15px); */
    outline: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: 0.5s ease;
}

button:hover {
    background-color:#ffffff;
    color: #000000;
    opacity: none;
    border: none;
    outline: none;
}

.signin {
    font-size: .9em;
    color: #fff;
    text-align: center;
    margin: 25px 0 10px;
}

.signin p a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

.signin p a:hover {
    text-decoration: underline;
}









/* media queries  */
@media(max-width:799px) {
    .section-1 {
        padding: 40px 40px;
    }

    /* home page */
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0px;
        right: -300px;
        height: 75vh;
        width: 200px;
        background-color: #e3e6e3;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }

    #navbar.start {
        right: 0px;
    }

    #navbar li {
        margin-bottom: 25px;

    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }

    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }

    #cart-bag {
        display: none;
    }
}