2sable, 6 5 bytes
6 byte version:
AIl-g_
Explanation:
A Push alphabet
Il Push lowercase input
- Remove all chars of input from alphabet
g Get length of the remainder
_ Print negative bool, where length < 1 = 1 (true), length > 0 = 0 (false)
5 byte version, inspired by carusocomputing's 05AB1E answer:
lÙ{Aå
Explanation:
l Push lowercase input
Ù{ Push sorted uniquified input
A Push alphabet
å Is alphabet in sorted, uniquified input?