/**handles:bluebeechild-gravity-forms**/
.gform_wrapper{
    .gform-body{
        input[type="checkbox"]{
            block-size: 11px;
            inline-size: 11px;
        }

        input[type="text"],
        input[type="tel"],
        input[type="email"],
        textarea,
        select{
            border-left: unset;
            border-right: unset;
            border-top: unset;
            padding-left: unset;
            padding-right: unset;
            border-bottom-color: rgba(236,165,165,0.4);
        }

        ::placeholder{
            color: rgba(255,255,255,0.8) !important;
        }

        .gform-field-label--type-inline{
            font-size: 10px;
            margin: 0;
        }
    }

    .gform-footer{
        justify-content: flex-end;
    }

    .gform_button,
    .gform-button{
        border: 1px solid var(--wp--preset--color--white) !important;
        font-weight: 400 !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        transition-property: background-color, color !important;
        transition-duration: 0.4s !important;
        transition-timing-function: ease !important;
        text-transform: uppercase !important;

        &:hover{
            background-color: var(--wp--preset--color--white) !important;
            color: var(--wp--preset--color--secondary) !important;
        }
    }
}