Hello There,
Thanks for writing in! Regretfully it does not possible to have the same styling because the v2 button element has a different structure with the submit button of your form. You may need to use a custom css to mimic the look of the button instead. You may need to use this custom css:
#DripThis-Embedded-Form button {
padding: 0.575em 0.85em 0.7em 0.85em;
margin: 0.5em 0em 0em 0em;
border-width: 0px 1px 0px 1px;
border-style: none solid none solid;
border-color: transparent rgb(163,145,97) transparent hsl(49,100%,28%);
font-size: 1.5em;
background-color: hsl(0,0%,100%);
box-shadow: 0em 0em 0.5em 0em rgba(0,0,0,0.1);
font-family: "Playfair Display",serif;
font-style: italic;
font-weight: 400;
line-height: 1;
color: rgb(0,55,103);
}
Hope this helps.