#rec864756378 .t-btn {
    position: absolute;
    bottom: -50px; /* Опускаем кнопку чуть ниже */
    left: 0;
    width: 100%;
    transform: none;
    z-index: 10;
    background: linear-gradient(to right, #E6D5FF, #C9A5FF);
    color: #2B1D57;
    font-weight: bold;
    border-radius: 12px;
    border: none;
    padding: 25px 0; /* Делаем кнопку толще */
    text-align: center;
    font-size: 18px; /* Можно сделать текст крупнее, если нужно */
}

/* Пунктирная линия сверху кнопки */
#rec864756378 .t-btn::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #2B1D57,
        #2B1D57 10px,
        transparent 10px,
        transparent 20px
    );
}