.form-row{
    display: flex;
    gap: 52px;
    margin-bottom: 30px;
    @media screen and (max-width: 980px){
        flex-wrap: wrap;
        gap:30px;
    }
    &:has(+ .wpcf7-response-output){
        margin-bottom: 0;
    }
    .input-group{
        flex: 1;
        @media screen and (max-width: 980px){
            flex: none;
            width: 100%;
        }
    }
    .submit-group{
        width: 100%;
        display: flex;
        justify-content: flex-end;
        p{
            display: flex;
            align-items: center;
            flex-direction: row-reverse;
        }

    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea{
        width: 100%;
        padding: 10px 0;
        color: rgba(71, 72, 54);
        font-family: 'Inter',Helvetica,Arial,Lucida,sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: -0.32px;
        border: none;
        border-bottom: 1px solid rgba(71, 72, 54, 0.50);
        transition: 0.5s all;
        &::placeholder{
            color: rgba(71, 72, 54, 0.50);
        }
        &:focus{
            border-bottom: 1px solid rgba(71, 72, 54);
        }
    }

    textarea{
        height: 134px;
    }

    input[type="submit"]{
        border-radius: 9999px;
        border: 1px solid rgba(152, 163, 49, 0.40);
        background: linear-gradient(135deg, rgba(91, 99, 0, 0.70) 0%, rgba(191, 204, 65, 0.70) 100%);
        box-shadow: 0 20px 40px 0 rgba(0, 106, 102, 0.06);
        backdrop-filter: blur(10px);
        padding: 20px 40px;
        color: #FFF;
        text-align: center;
        font-family: 'Inter',Helvetica,Arial,Lucida,sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px; /* 142.857% */
        letter-spacing: -0.28px;
        text-transform: uppercase;
        transition: 0.5s all;
        cursor: pointer;
        &:hover{
            background: linear-gradient(135deg, rgba(56, 61, 0, 0.70) 0%, rgba(169, 181, 49, 0.70) 100%);
        }
    }
}