@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');

::selection{
    background-color: rgba(0, 0, 0, 0.288);
}
#login_page{
    display: none;
    font-family: 'Quicksand', sans-serif;
    position: absolute;
    top: 0;
    z-index: 100;
    background:linear-gradient(rgba(0, 0, 0, 0.8) 80%,rgba(0, 0, 0, 0));
    width: 100%;
    height: 300vh;
}
.text_part{
    width: 100%;
    text-align: center;
    margin-top: 30px;
}
.text_part i{
    font-size: 30px;
    background-color: white;
    color: black;
    padding: 13px 20px;
    border: 3px solid rgb(255, 255, 255);
    border-radius: 5em;
}
form{
    width: 30%;
    margin: auto;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 1em;
    transition: all 1s;
}
#email input, #pass input{
    width: 100%;
    padding: 18px 0 18px 50px;
    background-color: rgba(255, 255, 255, 0.24);
    border:1px solid white;
    border-radius: 5em;
    outline: none;
    font-size: 20px;
    color: white;
}

form input:-webkit-autofill,
form input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
    -webkit-text-fill-color: white;
}

#email,#pass{
    position: relative;
}
#email i{
    position: absolute;
    top:-5px;
    left:-25px;
    padding: 22px 24px;
    border-radius: 5em;
    background-color: white;
    color: black;
    font-size: 25px;
}
#pass i{
    position: absolute;
    rotate: 40deg;
    top:-5px;
    right:-25px;
    padding: 22px 23px;
    border-radius: 5em;
    background-color: white;
    color: black;
    font-size: 25px;
}
#submit{
    font-size: 25px;
    font-weight: bold;
    font-family: 'Quicksand';
    background-color: white;
    color:black;
    border: 1px solid white;
    padding: 20px 28px;
    margin: 20px 0 10px 0;
    border-radius: 5em;
    transition: all 0.5s;
}

#submit:hover{
    background-color: rgb(2, 255, 57);
    color: white;
    border: none;
    border-radius: 5em;
    box-shadow: 0 0 10px 3px rgb(2, 255, 65);
}


