@layer components-widgets {
    .job-seeker-form__wrapper {
        position: relative;
        padding: 32px;
        color: var(--primary-white);
        border-radius: var(--br4);
        background: var(--primary-blue)
    }

    @media screen and (max-width: 1279px) {
        .job-seeker-form__wrapper {
            padding: 12px
        }
    }.job-seeker-form__footer-wrapper {
         display: grid;
         grid-template:1fr/repeat(2, 1fr);
         -moz-column-gap: 16px;
         column-gap: 16px;
         margin-top: 24px
     }

    .job-seeker-form__success-tab {
        position: absolute;
        top: 0;
        left: 0;
        display: grid;
        grid-template:1fr/repeat(2, 1fr);
        gap: 20px 16px;
        width: 100%;
        height: 100%;
        padding: 32px;
        background: var(--primary-blue)
    }

    @media screen and (max-width: 1023px) {
        .job-seeker-form__success-tab {
            display: flex;
            flex-direction: column;
            padding: 12px
        }
    }.job-seeker-form__success-text-wrapper {
         display: flex;
         flex-basis: 100%;
         flex-direction: column;
         justify-content: space-between
     }

    .job-seeker-form__scroll-btn {
        position: fixed;
        bottom: -100%;
        left: 50%;
        width: 49vw;
        max-width: 932px;
        transition: opacity 0.4s, bottom 0.4s;
        transform: translate(-50%, 0);
        opacity: 0
    }

    .job-seeker-form__scroll-btn_visible {
        bottom: 20px;
        opacity: 1
    }

    @media screen and (max-width: 1599px) {
        .job-seeker-form__scroll-btn {
            width: 65vw;
            max-width: 100%
        }
    }@media screen and (max-width: 1023px) {
    .job-seeker-form__scroll-btn {
        width: 81vw
    }
}@media screen and (max-width: 767px) {
    .job-seeker-form__scroll-btn {
        width: calc(100vw - 16px)
    }
}.job-seeker-form_bg-white .job-seeker-form__wrapper, .job-seeker-form_bg-white .job-seeker-form__success-tab {
     color: inherit;
     background: var(--primary-white)
 }
}
