Hi there, here I am another support staff and I thought I delve in for further elaboration.
The settings that you see in the Pro > Launch > Theme Options > Button are available generally for different places of the theme which the button is generated, including the contact form 7 send button.
You use the Button element to create the button you like and the stuff there are not available globally and the button is only available in the builder as you added on the about page.
Now that you know you can not use the same styling of the button element for the contact button, there is a manual way to somehow have the same functionality using the custom CSS code for your contact button.
I suggest that you use this CSS code to have the button of contact be like the button of the about page both in normal and hover mode. You will need to add the code below to Pro > Launch > Theme Options > CSS: (You will need to replace the code below with whatever code we suggested before)
input.wpcf7-form-control.wpcf7-submit {
border-radius: 0.35em;
font-size: 1em;
background-color: rgba(255,255,255,1);
box-shadow: 0em 0.15em 0.65em 0em rgba(0,0,0,0.25) !important;
text-shadow: none;
transition-duration: 0.3s;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
input.wpcf7-form-control.wpcf7-submit:hover {
border-radius: 0.35em;
font-size: 1em;
background-color: rgba(255,255,255,1);
box-shadow: 0em 0.15em 0.65em 0em rgba(0,0,0,0.25) !important;
text-shadow: none;
transition-duration: 0.3s;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
background-color: rgba(255,255,255,1);
box-shadow: 0em 0.15em 0.65em 0em rgba(0,0,0,0.25);
color: rgba(0,0,0,0.5);
}
Hope I could describe the case completely. Thank you.