/* Both mobile and normal sheets were getting large
    and this one is going to be large in itself, 
    so seperated it out, since it's essentially a once off
*/ 

input:required{
    background-color: rgba(128,128,128,0.4)
}

input[value]{
    color:royalblue
}



input:focus{
    background-color: white;
    content: " "
}

input:optional{
    background-color: whitesmoke;
}

#btn {
    cursor: pointer;

}

#btn:hover{
    background-color: yellow;
}