body {
    font-family: 'Jost', sans-serif;
    background: var(--BG_Color, #EBEBEB);
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*ОСНОВНОЙ КОНТЕЙНЕР белый*/
.body-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 33px;
    padding-right: 33px;
    gap: 20px;
}
/*Чёрная кнопка длинная*/
.black-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    margin-top: 15px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 15px;
    background: var(--AVII_Black, #1B1B1B);
    border: 1px solid var(--AVII_Black, #1B1B1B);
    cursor: pointer;
    overflow: hidden;
}
.black-button::before {
    content: '';
    position: absolute;
    top: 0;
    right: -25%;
    width: 100%;
    height: 100%;
    background: var(--AVII_White, #FFFFFF);
    transform: skewX(-25deg) translateX(100%);
    transition: transform 0.45s ease;
    z-index: 0;
}
.black-button:hover::before {
    transform: skewX(-25deg) translateX(-35%);
}
.black-button-text {
    position: relative;
    z-index: 1;
    color: var(--AVII_White, #FFFFFF);
    font-weight: 300;
    font-size: 12px;
    font-style: light;
    letter-spacing: 2px;
    text-transform: lowercase;
    padding: 15px 20px;
    transition: color 0.45s ease;
}
.black-button:hover .black-button-text {
    color: var(--AVII_Black, #1B1B1B);
}
/*Текст дисклеймер*/
.disclaimer-text {
    font-size: 12px;
    font-weight: 300;
    font-style: light;
    color: var(--AVII_Black, #1B1B1B);
    text-align: center;
}