/* 
    Table of content
    1. GRAVITY FORMS
    RESIZE
*/

/* 1. GRAVITY FORMS */
/* Grid */
.gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 2rem !important;
    grid-row-gap: 2rem !important;
}

/* Input */
.gform_wrapper.gravity-theme input,
.gform_wrapper.gravity-theme textarea {
    margin: 0 !important;
    padding: 1.5rem 2rem !important;
    border: .1rem solid white !important;
    font-family: 'Gotham' !important;
    font-weight: 400 !important;
}

.gform_wrapper.gravity-theme textarea {
    padding: 2rem !important;
}

.ginput_container_text ::placeholder,
.ginput_container_email ::placeholder,
.ginput_container_textarea ::placeholder {
    font-family: 'Gotham' !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
}

/* Footer */
.gform_wrapper.gravity-theme .gform_footer {
    margin: 0 !important;
    padding: 0 !important;
}

.gform_wrapper.gravity-theme .gform_footer input {
    margin: .8rem 0 0 !important;
    border-color: var(--color-green) !important;
    background-color: var(--color-green) !important;
    color: white !important;
    text-transform: uppercase !important;
    cursor: pointer;
}

/* Error */
.gform_wrapper.gravity-theme .gform_validation_errors,
.gform_wrapper.gravity-theme .gfield_validation_message {
    display: none;
}

.gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
    border-color: #c02b0a !important;
}

/* Confirmation */
.gform_confirmation_message {
    color: white !important;
}

/* reCaptcha */
.grecaptcha-badge {
    visibility: hidden;
    opacity: 0;
}

/* RESIZE */
@media (max-width: 767px) {
    /* 1. GRAVITY FORMS */
    /* Input */
    .gform_wrapper.gravity-theme input,
    .gform_wrapper.gravity-theme textarea {
        padding: 1rem 2rem !important;
    }
}