:root {
    --lebc: rgb(27, 89, 160);
    --lpbc: rgb(27, 89, 160);
    --lcs: 1.0;
    --lcpx: 200vw;
}

#login-container {
    position: fixed;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 2;
    transform: translateX(var(--lcpx)) scale(var(--lcs));
    width: 400px;
    height: fit-content;
    background-color: transparent;
    border-radius: 50px;
    animation: shadow infinite 5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
}

#login-email {
    background-color: rgb(0, 0, 0, 0);
    width: 300px;
    height: 35px;
    text-align: center;
    font-size: large;
    outline: none;
    color: rgb(170, 170, 170);
}

.login-emailcontainer {
    margin-bottom: 10px;
    padding-left: 7px;
    padding-right: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 2px solid var(--lebc);
}

#login-password {
    background-color: rgb(0, 0, 0, 0);
    width: 300px;
    height: 35px;
    text-align: center;
    font-size: large;
    outline: none;
    color: rgb(170, 170, 170);
}

.login-passwordcontainer {
    margin-bottom: 10px;
    padding-left: 7px;
    padding-right: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 2px solid var(--lpbc);
}

#login-login {
    background-color: rgba(45, 51, 58, 0.733);
    margin-bottom: 20px;
    min-width: 175px;
    height: 35px;
    cursor: pointer;
    text-align: center;
    font-size: large;
    outline: none;
    color: rgb(170, 170, 170);
    border: 2px solid rgb(27, 89, 160);
    border-radius: 10px;
    box-shadow: 0 0 3px #4d4d4d;
    line-height: 35px;
}

#login-login:hover {
    background-color: rgb(43, 54, 65);
    cursor: pointer;
}

#login-bottom-elements {
    display: flex;
    width: 95%;
    height: fit-content;
}

#login-fpass {
    position: relative;
    font-family: "Josefin+Sans";
    font-size: larger;
    color: rgb(170, 170, 170);
    cursor: pointer;
    margin-left: auto;
    right: 40px;
}

#login-fpass:hover {
    color: rgb(0, 153, 255);
}

#login-register {
    position: relative;
    font-family: "Josefin+Sans";
    font-size: larger;
    color: rgb(170, 170, 170);
    cursor: pointer;
    left: 40px;
}

#login-register:hover {
    color: rgb(0, 153, 255);
}

@media only screen and (max-width: 768px) {
    #login-container {
        scale: 0.8;
    }
}