:root {
--color-accent: #ce4318;
}
.cta-form {
display: grid;
grid-template-columns: repeat(2, 1fr);
column-gap: 32px;
}
.cta-form p:last-of-type {
grid-column: 1 / -1;
}
.cta-form p:nth-last-of-type(2) {
grid-column: 1 / -1;
}
@media screen and (max-width: 768px) {
.cta-form {
grid-template-columns: 1fr;
}
}
.cta-form label {
position: relative;
}
.cta-form label > span:first-of-type {
display: none;
position: absolute;
z-index: -1;
opacity: 0;
}
.cta-form p input:not(.wpcf7-submit) {
border-color: var(--color-accent);
}
.cta-form p input.wpcf7-submit {
width: 100%;
}
.cta-form br {
display: none;
}
.cta-form ::placeholder {
border: none !important;
}
#shortcode-widget-4 h3 {
text-transform: uppercase;
}