Complete the code to add a box shadow of 5px horizontal offset, 10px vertical offset, a blur radius of 15px, and a black color, along with a text shadow of 2px horizontal offset, 2px vertical offset, a blur radius of 5px, and a red color:
.element {
box-shadow: _____;
text-shadow: _____;
}