.chek_box{
    display: flex;
    flex-direction: row;
    margin-left: 20px;
    align-items: center;
}

.chek_box p,
.chek_box a{
    font-size: 10px;
    color: #8f8f8f;
}

.chekbox_text {
    padding-left: 10px;
}

.chek_box input {
    accent-color: #c6a22c;
}

/* Стили для невалидного чекбокса */
#myCheckbox.invalid {
    outline: 1px solid red;
}

/* Эффект тряски */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

#myCheckbox.shake {
    animation: shake 0.5s ease-in-out;
}