.wpcf7 {
    width: 100%;
}

.wpcf7-text,
.wpcf7-textarea {
    font-family: 'Manrope', serif;
    font-size: 16px;
    color: var(--secondary-sand);
    border: none;
    border-bottom: 1px solid var(--secondary-sand);
    background: rgba(65, 116, 95, 0.30);
    padding: 12px 16px;
    line-height: 1.375;
    width: 100%;
    max-width: 100%;
    min-height: 46px;
    border-radius: 0;
}

.wpcf7-not-valid {
    border-color: var(--secondary-alert);
}

.wpcf7-text::placeholder,
.wpcf7-textarea::placeholder {
    color: var(--secondary-sand);
    opacity: 1;
}

.wpcf7-text::-webkit-input-placeholder,
.wpcf7-textarea::-webkit-input-placeholder{
    color: var(--secondary-sand);
}

.wpcf7-text:-ms-input-placeholder,
.wpcf7-textarea:-ms-input-placeholder {
    color: var(--secondary-sand);
}

.wpcf7-text::-ms-input-placeholder,
.wpcf7-textarea::-ms-input-placeholder {
    color: var(--secondary-sand);
}


.wpcf7-checkbox input[type=checkbox] {
    visibility: hidden;
    min-width: 21px;
    height: 21px;
    top: 0;
    left: 0;
    position: absolute;
}

.wpcf7-checkbox input[type=checkbox] + span:before {
    content: "";
    display: block;
    position: absolute;
    height: 21px;
    min-width: 21px;
    top: 0;
    left: 0;
    border: 1px solid var(--secondary-sand);
    background: var(--primary-green);
}

.wpcf7-checkbox input[type=checkbox] + span:after {
    position: absolute;
    height: 13px;
    width: 13px;
    background: var(--secondary-sand);
    top: 4px;
    left: 4px;
    visibility: hidden;
}

.wpcf7-checkbox input[type=checkbox]:checked + span:after {
    visibility: visible;
}

.wpcf7-list-item {
    margin: 0;
}

.wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    margin: 0;
}

.wpcf7-list-item-label {
    font-size: 12px;
    color: var(--secondary-sand);
    letter-spacing: 0.12px;
    display: inline-block;
    cursor: pointer;
}

.wpcf7-list-item .wpcf7-list-item-label {
    font-size: 12px;
    color: var(--secondary-sand);
    line-height: normal;
    margin-left: 36px;
}

.wpcf7-list-item .wpcf7-list-item-label a {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
}

.form-submit .wpcf7-spinner {
    margin-top: 16px;
}

.form-submit .button {
    font-family: 'Manrope', serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.64px;
    text-transform: uppercase;
    min-height: 48px;
    min-width: auto;
    padding: 12px 32px;
    border-radius: 0;
}

.wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.wpcf7 form.failed .wpcf7-response-output,
form.aborted .wpcf7-response-output {
    font-size: 16px;
    color: var(--secondary-sand);
    padding: 16px;
    text-align: center;
    border-width: 1px;
}

.wpcf7 form .wpcf7-response-output {
    border: 1px solid var(--primary-green-light);
    font-size: 14px;
    color: var(--primary-white);
    padding: 12px;
    margin: 24px 0 0 0;
    text-align: center;
}

form.invalid .wpcf7-response-output,
form.unaccepted .wpcf7-response-output,
form.payment-required .wpcf7-response-output {
    font-size: 12px;
    line-height: normal;
    letter-spacing: 0.12px;
    color: var(--secondary-alert);
    border: 0;
    padding: 0;
    margin: 8px 0 0 0;
    text-align: left;
}