.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    background-color: white;
    width: 100%;
    padding: 15px !important;
    border: none;
    font-family: 'Stag Sans Medium', sans-serif;
    font-size: 16px !important;
    color: #2D2B2B;
}

.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus {
    background-color: white;
    border: none;
}

.newsletter-form input::placeholder {
    color: #A6AEAF;
    opacity: 1;
}

.newsletter-form input:focus::placeholder {
    color: #2D2B2B;
}

.newsletter-form input[type="submit"] {
    line-height: normal;
    text-transform: uppercase;
    font-family: "Gotham Medium", sans-serif;
    height: 100%;
    border: solid 3px #fff;
    padding: 10px 45px 10px 25px;
    width: 100%;
    position: relative;
    background-color: transparent;
    -webkit-border-radius: 0;
}

.newsletter-form input[type="submit"]:hover {
    color: var(--cyan);
    background-color: transparent;
    border-color: var(--cyan);
}

.newsletter-form [data-field-class=gform_editor_submit_container] {
    position: relative;
}

.newsletter-form [data-field-class=gform_editor_submit_container]::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    mask-image: url("/wp-content/uploads/2022/07/white_angle.svg");
    mask-repeat: no-repeat;
    mask-position: right;
    mask-size: contain;
    -webkit-mask-image: url("/wp-content/uploads/2022/07/white_angle.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: right;
    -webkit-mask-size: contain;
}

.newsletter-form [data-field-class=gform_editor_submit_container]:hover:before {
    background-color: var(--cyan);
    mask-image: url("/wp-content/uploads/2022/07/cyan_angle.svg");
    -webkit-mask-image: url("/wp-content/uploads/2022/07/cyan_angle.svg");
}

.newsletter-form .gform_confirmation_message {
    text-align: center;
    color: white;
    font-family: 'Stag Sans Medium';
    font-size: 16px;
}


/* Contact Form Styles */

.contact-form input[type="text"],
.contact-form input[type="email"] {
    background-color: white;
    width: 100%;
    padding: 15px !important;
    font-family: 'Stag Sans Medium', sans-serif;
    font-size: 16px !important;
    color: #2D2B2B;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus {
    background-color: white;
    border: none;
}

.contact-form input::placeholder {
    color: #A6AEAF;
    opacity: 1;
}

.contact-form input:focus::placeholder {
    color: #2D2B2B;
}

.contact-form input[type="submit"] {
    line-height: normal;
    text-transform: uppercase;
    font-family: "Gotham Medium", sans-serif;
    height: 100%;
    color: var(--red);
    border: solid 3px var(--red);
    padding: 10px 45px 10px 25px;
    width: 100%;
    position: relative;
    background-color: transparent;
    margin: 0 !important;
}

.contact-form input[type="submit"]:hover {
    color: var(--cyan);
    background-color: transparent;
    border-color: var(--cyan);
}

.contact-form .gform_footer {
    position: relative;
    padding: 0 !important;
}

.contact-form .gform_footer::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--red);
    mask-image: url("/wp-content/uploads/2022/07/red_angle.svg");
    mask-repeat: no-repeat;
    mask-position: right;
    mask-size: contain;
    -webkit-mask-image: url("/wp-content/uploads/2022/07/red_angle.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: right;
    -webkit-mask-size: contain;
}

.contact-form .gform_footer:hover:before {
    background-color: var(--cyan);
    mask-image: url("/wp-content/uploads/2022/07/cyan_angle.svg");
    -webkit-mask-image: url("/wp-content/uploads/2022/07/cyan_angle.svg");
}

.contact-form .gform_confirmation_message {
    text-align: center;
    font-family: 'Stag Sans Medium';
    font-size: 16px;
}