.modal-captcha {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000000;

}

.modal-block {
    background-color: #000;
    position: relative;
    width: 25%;
    height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    box-shadow: 0 4px 8px rgba(56, 56, 56, 0.2);
}

.no-scroll {
    overflow: hidden;
}

.the-button-wrapper-5 {
 padding: 25px;
}

li {
    list-style: none; /* Убирает маркеры */
}

.modal-block::before,
.modal-block::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    box-sizing: border-box;
}

.modal-block::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.modal-block::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}