void Bindable_Unfocused(object sender, FocusEventArgs e)
        {
            bool IsValid = false;

            IsValid = Validators.PasswordValidator(((Entry)sender).ValidatedText());
            ((Entry)sender).TextColor = IsValid ? DefaultColor : Color.Red;
        }