.widget-form.template-2{
    position: relative;
    font-size: clamp(16px, 1.28vw, 20px);
}
.widget-form.template-2 .widget-template-wrapper{
    background-color: var(--add-background, transparent);
    padding: 5em 4em;
    border-radius: 4px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
}
.widget-form.template-2 .widget-header{
    max-width: 60%;
}
.widget-form.template-2 .widget-header .widget-title{
    color: #000;
    font-size: 2.4em;
    font-weight: 700;
    line-height: 116%;
}
.widget-form.template-2 .widget-header .widget-description{
    color: #000;
    font-size: 1em;
    font-weight: 400;
    line-height: 128%;
}
.widget-form.template-2 .widget-header .widget-button{
    color: #FFF;
    font-size: 1em;
    font-weight: 500;
    line-height: 1;
    outline: none;
    border: none;
    border-radius: 12px;
    background-color: var(--main-color, #252525);
    margin: 0;
    padding: .9em 1.9em;

    transition: background-color .2s ease-out;
}
.widget-form.template-2 .widget-header .widget-button:hover,
.widget-form.template-2 .widget-header .widget-button:focus{
    background-color: var(--main-color-hover, #000000);
}

.widget-form.template-2 .widget-header .widget-title + .widget-description,
.widget-form.template-2 .widget-header .widget-title + .widget-button{
    margin-top: 1em;
}
.widget-form.template-2 .widget-header .widget-description + .widget-button{
    margin-top: 2.75em;
}

@media all and (max-width: 800px) {
    .widget-form.template-2{
        font-size: clamp(16px, 2.6vw, 20px);
    }
    .widget-form.template-2 .widget-template-wrapper{
        padding: 3em 2em;
        background-image: none !important;
    }
    .widget-form.template-2 .widget-header{
        max-width: 100%;
    }
    .widget-form.template-2 .widget-header .widget-title br,
    .widget-form.template-2 .widget-header .widget-description br{
        display: none;
    }
    .widget-form.template-2 .widget-header .widget-title{
        font-size: 1.75em;
        text-wrap-style: balance;
        text-wrap: balance;
    }
    .widget-form.template-2 .widget-header .widget-button{
        padding: 1em 2em;
    }
}
@media all and (max-width: 600px) {
    .widget-form.template-2 .widget-template-wrapper{
        padding: 1.6em 1em;
    }
}
