form:has(button.g-recaptcha) {
    visibility: hidden;
}

    form:has(button.g-recaptcha).show {
        visibility: visible;
    }

.uforms-overlay {
    position: relative;
    pointer-events: auto;
    padding: 2rem;
}

    /* full-cover overlay */
    .uforms-overlay:before {
        content: "";
        border-radius: 2rem;
        position: absolute;
        inset: 0;
        display: flex;
        height: 100%;
        background: repeating-linear-gradient( 45deg, /* angle of the stripes */
        white, /* first color */
        white 20px, /* width of white stripe */
        #efefef 20px, /* start grey stripe */
        #efefef 40px /* width of grey stripe */
        );
        opacity: 0.7;
        z-index: 10;
        pointer-events: auto; /* blocks interaction with form beneath */
    }

.uforms-consent-message {
    padding: 2rem;
    background-color: #cae5ef;
    display: grid;
    margin-inline: auto;
    place-content: center;
    font-size: 1rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    width: 100%;

    button

        {
            margin-top: 1rem;
            cursor: pointer;
            border: 1px solid #062060;
            background-color: #062060;
            color: #fff;
            font-size: 0.8rem;
            font-weight: normal;
            padding: 10px 24px;
            width: fit-content;
            justify-self: center;

      &:hover

        {
            background-color: #1e3670;
        }

    }
}