@import url("/stylesheets/style.css");

* {
    box-sizing: border-box;
}


.logincontainer {
    position: absolute;
    left: 50%; /* relative to nearest positioned ancestor or body element */
    top: 50%; /*  relative to nearest positioned ancestor or body element */
    transform: translate(-50%, -50%); /* relative to element's height & width */
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.80);
    width: 50vmax;
    max-width: 95vw;
    height: fit-content;
    aspect-ratio: 2 / 1;
    padding: 0px;
    border-radius: 1vw;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: ease-in-out 0.3s;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.8) 0px 7px 20px;
    overflow: hidden;
}

.logincontainer:hover {
    background-color: rgba(0, 0, 0, 0.85);
}

#leftloginformcontainer, #rightloginformcontainer {
    max-width: 50%;
    overflow: hidden;
}

#leftloginformcontainer {
    overflow: hidden;
}

.loginformimage {
    max-width: 200%;
    max-height: 200%;
    opacity: 0.9;
}

#rightloginformcontainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 0.7vmax;
    margin: 0 auto;
    width: 45%;
    padding: 0.7vmax 0.9vmax 0.7vmax 0.3vmax; 
}

.logincontainer > .loginboxwrapper > .entrybox {
    transition: 0.2s ease-in-out;
}

.logincontainer:hover > .loginboxwrapper > .entrybox {
    background-color: rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#loginpagetitle {
    font-family: "Lato", "Comfortaa";
    font-size: 1.6vmax;
    font-weight: 100;
    margin-bottom: 1vh;
    line-height: 100%;
}

.submitloginbutton, .defaultsubmitbutton, .googleloginbutton {
    font-size: 1.2vmax;
    padding: 0.5vw;
    border-radius: 0.8vmax;
    color: white;
    width: 100%;
    font-family: "Lato", "Comfortaa";
    font-weight: 100;
    line-height: 100%;
    border: none;
}

.googleloginbutton {
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5vmax;
    background-color: rgba(255, 255, 255, 0.8);
    
}

.googleloginicon {
    width: 1.4vmax;
}