@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
}
html,body{
    height: 100%;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}
main{
    display: flex;
    flex-direction: column;
    padding: 3em;
    align-items: center;
    gap: .5em;
}
img{
    height: 4em;
    width: 4em;
}
.textField{
    height: 3em;
    padding: 5px;
    border: 1.5px solid gray;
    border-radius: 10px;
    width: 80vw;
}
#logIn{
    background-color: rgb(0, 149,246);
    color: white;
    height: 2.7em;
    width: 80vw;
    border: 1px solid rgb(0, 149,246);
    border-radius: 20px;
}
#forgotPswd{
    text-decoration: none;
    color: black;
}
#newAccount{
    margin-top: 70%;
    background-color: transparent;
    color: rgb(0, 149,246);;
    height: 2.7em;
    width: 80vw;
    border: 1.5px solid rgb(0, 149,246);
    border-radius: 20px;
}