.cf_wrapper {

    width: min(900px, 100%);
    margin: auto;
    padding: 2rem;

    box-sizing: border-box;

    border-radius: 20px;

    background: linear-gradient(
        360deg,
        rgba(76,175,80,0.9) 0%,
        rgba(63,166,106,0.9) 50%,
        rgba(47,143,139,0.9) 100%
    );

    color: #fff;

    box-shadow:
        0 15px 40px rgba(0,0,0,.15);

}

.cf {
    width: 100%;
}

.row {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1.2rem;
}

.row > div:first-child {
    font-weight: 600;
    font-size: .95rem;
}

.cf input,
.cf textarea {

    width: 100%;

    padding: 14px 16px;

    border: none;
    border-radius: 10px;

    font-size: 16px;
    font-family: inherit;

    box-sizing: border-box;

    background: rgba(255,255,255,.95);

    transition: .2s ease;
}

.cf input:focus,
.cf textarea:focus {

    outline: none;

    background: #fff;

    box-shadow:
        0 0 0 4px rgba(255,255,255,.25);
}

.cf textarea {
    min-height: 180px;
    resize: vertical;
}

.cf a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.ds {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cf input[type="checkbox"] {

    width: 24px;
    height: 24px;
    min-width: 24px;

    accent-color: #2c8a3f;

    margin-top: 2px;
}

.cf_hint {
    font-size: .85rem;
    opacity: .9;
    margin-bottom: 1rem;
}

input[type="submit"] {

    width: 100% !important;

    padding: 16px !important;

    border: none;

    border-radius: 10px;

    background: #2f7d36;

    color: #fff;

    font-size: 1rem;
    font-weight: 700;

    cursor: pointer;

    transition: .2s ease;
}

input[type="submit"]:hover {

    transform: translateY(-2px);

    background: #27682d;
}

.wpcf7-submit:disabled {

    background: #7b7b7b;
    cursor: not-allowed;
}

.wpcf7-not-valid-tip {

    color: #fff;

    background: rgba(255,0,0,.25);

    padding: .5rem;

    border-radius: 8px;

    margin-top: .5rem;
}

@media (max-width: 768px) {

    .cf_wrapper {

        padding: 1.25rem;

        border-radius: 15px;
    }

    .cf textarea {
        min-height: 140px;
    }

}