@layer components-entities {
    .form-tabs {
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 560px;
        padding: 32px;
        border-radius: var(--br4);
        background-color: var(--tertiary-blue)
    }

    @media screen and (max-width: 1279px) {
        .form-tabs {
            padding: 20px
        }
    }@media screen and (max-width: 767px) {
    .form-tabs {
        padding: 12px
    }
}.form-tabs__tab-content {
     display: flex;
     flex-direction: column;
     flex-grow: 1;
     justify-content: space-between;
     height: 100%
 }

    .form-tabs__heading {
        display: flex;
        justify-content: space-between
    }

    @media screen and (max-width: 767px) {
        .form-tabs__heading {
            margin-bottom: 12px;
            row-gap: 32px
        }
    }.form-tabs__input-wrapper {
         row-gap: 20px
     }

    @media screen and (max-width: 1279px) {
        .form-tabs__input-wrapper {
            row-gap: 16px
        }
    }@media screen and (max-width: 767px) {
    .form-tabs__input-wrapper {
        row-gap: 4px
    }
}.form-tabs__button-previous {
     padding: 0;
     justify-self: baseline;
     color: var(--tertiary-black)
 }

    .form-tabs__resend-code {
        cursor: pointer
    }

    .form-tabs__button-wrapper {
        display: flex;
        -moz-column-gap: 16px;
        column-gap: 16px
    }

    @media screen and (max-width: 767px) {
        .form-tabs__button-wrapper {
            display: flex;
            flex-direction: column;
            margin-top: 24px;
            row-gap: 8px
        }
    }.form-tabs__callback-heading {
         display: grid;
         grid-template-columns:repeat(2, 1fr);
         -moz-column-gap: 60px;
         column-gap: 60px
     }

    @media screen and (max-width: 767px) {
        .form-tabs__callback-heading {
            grid-template-columns:1fr;
            row-gap: 16px
        }
    }.form-tabs__button-error-wrapper {
         display: flex;
         align-self: flex-end;
         gap: 16px;
         width: 100%
     }

    @media screen and (max-width: 767px) {
        .form-tabs__button-error-wrapper {
            flex-direction: column;
            gap: 8px
        }
    }.form-tabs__checkbox-list-title {
         display: flex;
         align-items: center;
         -moz-column-gap: 8px;
         column-gap: 8px;
         margin-bottom: 16px
     }

    .form-tabs__tooltip-icon {
        position: relative;
        top: 2px;
        width: 24px;
        height: 24px
    }

    .form-tabs__checkbox-list-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 12px
    }

    .form-tabs_height-m {
        min-height: 733px
    }

    @media screen and (max-width: 1279px) {
        .form-tabs_height-m {
            min-height: 442px
        }
    }@media screen and (max-width: 1023px) {
    .form-tabs_height-m {
        min-height: 486px
    }
}@media screen and (max-width: 767px) {
    .form-tabs_height-m {
        min-height: 479px
    }
}.form-tabs_height-l {
     min-height: 768px
 }

    @media screen and (max-width: 1279px) {
        .form-tabs_height-l {
            min-height: 594px
        }
    }@media screen and (max-width: 1023px) {
    .form-tabs_height-l {
        min-height: 635px
    }
}@media screen and (max-width: 767px) {
    .form-tabs_height-l {
        min-height: 632px
    }
}.form-tabs_height-auto {
     min-height: auto
 }

    .form-tabs_primary-blue {
        background-color: var(--primary-blue)
    }

    .form-tabs_primary-white {
        background-color: var(--primary-white)
    }
}
