#wholePage {
    font-family: "poppins", sans-serif;
    display: block;
    text-align: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-image: url("background.jpg");
    /* background-size: 100%; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
}

#homeLink {
    
}

#navBar {
    /* align-items: center; */
    text-align: left;
}

#navBar a {
    /* font-family: "poppins", sans-serif; */
    text-decoration: none;
    font-size: 40px;
    color: white;

    font-family: "Lilita One", serif;
        /* font-weight: 50; */
        font-style: normal;

        -webkit-text-stroke: 1.3px brown;
}

#loginParent {
    margin-top: -5%;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loginPanel {
    font-family: "poppins", sans-serif;
    display: block;
    color: red;
    max-width: 350px;
    width: 50%;
    min-height: 400px;
    border: solid .2px white;
    border-radius: 16px;
    backdrop-filter: blur(25px);

    border-left-width: 5px;
    border-left-color: gray;

    border-bottom-width: 4px;
    border-bottom-color: gray;

    border-right-width: 1px;
    border-right-color: silver;
    
    
    
}

#loginPanel:hover {
    backdrop-filter: blur(5px);
    transform: scale(1.1);
}

#loginPanel {
    transform: scale(1);
    backdrop-filter: 0;
    transition: 0.5s transform ease-in-out, 0.5s backdrop-filter ease-in-out;
}

form {
    display: block;
}

.loginLabel {
    /* padding: 15px; */
    padding-top: 35px;
    padding-bottom: 30px;

    /* justify-content: center; */
    text-align: center;

    font-size: 30px;
    color: white;
    font-weight: bold;
}

.emailSection, .passwordSection {
    display: flex;
    margin-left: 8%;
    padding-bottom: 25px;
}

.userIcon, .passwordIcon {
    padding-right: 5px;
    color: white;
    font-size: 20px;
}

.emailInputBox, .passwordInputBox {
    border-radius: 50px;
    width: 75%;
    text-align: right;
    background-color: transparent;
    color: white;
    border: inset 2px white;
    font-size: 15px;
    height: 25px;
}

.emailInputBox::placeholder, .passwordInputBox::placeholder {
    font-family: "poppins", sans-serif;
    color: white;
    font-size: 15px;
}

.userIcon, .passwordIcon, .emailInputBox, .passwordInputBox, .loginButton {
    padding-top: 10px;
    padding-bottom: 10px;
}

.emailInputBox:hover, .passwordInputBox:hover {
    border-color: cyan;
}

.loginSection {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.loginButton {
    font-family: "poppins", sans-serif;
    width: 40%;
    border-radius: 30px;
    /* background-color: white; */
    background-image: linear-gradient(white, goldenrod, rgb(225, 224, 224));
    border: solid 1px white;
    color: black;
    font-weight: bold;
    border: outset 1px silver;
    cursor: pointer;
}

.loginButton:hover {
    background-color: lightblue;
    background-image: linear-gradient(rgb(244, 228, 190),goldenrod, rgb(255, 255, 255));
    border: inset 1px silver;
}

.registerSection {
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.registerSection {
    padding-top: 30px;
    color: white;
}

.registerLink {
    padding-left: 10px;
}

/* //// Toggle Password ///// -->Header*/
.password-wrapper {
    display: flex;
    align-items: center;
}

.password-wrapper-section {
    padding-right: 5px;
}

.emailInputBox, .passwordInputBox {
    /* flex: 1;
    background-color: transparent;
    border-radius: 16px;
    border-color: white;
    color: white;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 5%;
    padding-right: 15%;
    border: inset 2px white; */
}

.emailInputBox {
    width: 255px;
}

.passwordInputBox {
    width: 226px;
}

.visiblePasswordButton {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 6px;
    z-index: 1;
    font-size: 1em;
    background: linear-gradient(135deg, rgb(251, 201, 109), rgb(252, 143, 46));
    width: 25px;
    height: 25px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    border: outset 1px white;
    border-width: 2px;
    box-shadow: 3px 1px 1.5px 1px rgb(131, 131, 131);
}

.visiblePasswordButton:hover {
    border: inset 1px white;
    border-width: 1.5px;
    box-shadow: 1px 1px 1px 1px rgb(131, 131, 131);
}


.visiblePasswordButton:active {
    background: none;
}

.passwordInputBox::placeholder ,.emailInputBox::placeholder {
    color: rgb(221, 219, 219);
}
/* //// Toggle Password ///// -->Bottom*/










/* Media reponsive on Mobile */
/* Responsive Layout for Mobile Devices */
@media (max-width: 768px) {
    #wholePage {
        font-family: "poppins", sans-serif;
        display: block;
        justify-content: center;
        align-items: center;
        width: 100vw;
        height: 90vh;
        background-image: url("background.jpg");
        background-size: 300%;
        background-repeat: no-repeat;
        background-position: center;
    }

    #navBar {
        text-align: left;
        /* padding-bottom: -20px; */
    }
    
    #navBar a {
        font-family: "poppins", sans-serif;
        text-decoration: none;
        font-size: 35px;
        color: white;
        
        font-family: "Lilita One", serif;
        font-weight: 50;
        font-style: normal;

        -webkit-text-stroke: 1.3px brown;
    }
    
    #loginParent {
        margin-top: -20%;
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #loginPanel {
        font-family: "poppins", sans-serif;
        display: block;
        color: red;
        max-width: 300px;
        width: 60%;
        min-height: 200px;
        height: 40%;
        border: solid .2px white;
        border-radius: 16px;
        backdrop-filter: blur(25px);

        border-left-width: 5px;
        border-left-color: gray;

        border-bottom-width: 4px;
        border-bottom-color: gray;

        border-right-width: 1px;
        border-right-color: silver;
    }

    .loginLabel {
        font-size: 25px;
        padding-top: 20px;
        padding-bottom: 20px;
    }



    .emailSection, .passwordSection {
        display: flex;
        margin-left: 5%;
        padding-bottom: 15px;
    }
    
    .userIcon, .passwordIcon {
        padding-right: 2px;
        color: white;
        font-size: 20px;
    }
    
    .emailInputBox, .passwordInputBox {
        border-radius: 50px;
        width: 75%;
        text-align: right;
        background-color: transparent;
        color: white;
        border: inset 2px white;
        font-size: 15px;
    }
    
    .emailInputBox::placeholder, .passwordInputBox::placeholder {
        font-family: "poppins", sans-serif;
        color: white;
        font-size: 15px;
    }

    .userIcon, .passwordIcon, .emailInputBox, .passwordInputBox, .loginButton {
        padding-top: 10px;
        padding-bottom: 5px;
    }
    
    .emailInputBox:hover, .passwordInputBox:hover {
        border-color: goldenrod;
    }
    
    .loginSection {
        display: flex;
        justify-content: center;
        padding-top: 20px;
    }
    
    .loginButton {
        font-family: "poppins", sans-serif;
        width: 40%;
        border-radius: 30px;
        /* background-color: white; */
        background-image: linear-gradient(white, goldenrod, rgb(225, 224, 224));
        border: solid 1px white;
        color: black;
        font-weight: bold;
        border: outset 1px silver;
        cursor: pointer;
        padding-bottom: 10px;
    }
    
    .loginButton:hover {
        background-color: lightblue;
        background-image: linear-gradient(rgb(244, 228, 190),goldenrod, rgb(255, 255, 255));
        border: inset 1px silver;
    }
    
    .registerSection {
        display: flex;
        justify-content: center;
        padding-top: 5px;
    }
    
    .registerSection {
        padding-top: 20px;
        color: white;
        display: block;
        text-align: center;
    }
    
    #loginPanel:hover {
        backdrop-filter: blur(5px);
        transform: scale(1.1);
    }
    
    #loginPanel {
        transform: scale(1);
        backdrop-filter: 0;
        transition: 0.5s transform ease-in-out, 0.5s backdrop-filter ease-in-out;
    }

    .emailInputBox {
        height: 25px;
        width: 190px;
    }

    .passwordInputBox {
        width: 160px;
        height: 25px;
    }
    
    /* //// Toggle Password ///// -->Header*/
    .password-wrapper {
        display: flex;
        /* justify-content: center; */
        align-items: center;
        /* height: 50px; */
    }

    .visiblePasswordButton {
        background: none;
        border: none;
        cursor: pointer;
        margin-left: 5px;
        font-size: .7em;
        z-index: 1;

        /* background-color: rgb(251, 206, 109); */
        background: linear-gradient(135deg, rgb(251, 201, 109), rgb(252, 143, 46));
        width: 25px;
        height: 25px;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        display: flex;
        border: outset 1px white;
        border-width: 2px;
        box-shadow: 3px 1px 1.5px 1px rgb(131, 131, 131);
    }

    .visiblePasswordButton:hover {
        border: inset 1px white;
        border-width: 1.5px;
        box-shadow: 1px 1px 1px 1px rgb(131, 131, 131);
    }
    /* //// Toggle Password ///// -->Bottom*/
}
















/* Responsive Layout for Small Mobile Screens (iPhone 13) */
@media (max-width: 390px) {
    #loginPanel {
        /* max-width: 350px;
        width: 50%;*/
        min-height: 330px; 
  
    }

    .emailInputBox, .passwordInputBox {
        border-radius: 50px;
        width: 70%;
        text-align: right;
        background-color: transparent;
        color: white;
        border: inset 2px white;
        font-size: 15px;
        height: 25px;
    }

    .emailInputBox {
        width: 75%;
    }
}