.block-form__input {
    margin-bottom: 15px;
}
.checkbox {
    font-size: 16px;
    line-height: 20px;
    padding-left: 70px;
    color: #888;
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease 0s;
}
.checkbox.active {
    color: #000;
}
.checkbox.active:before {
    background-color: #4fbb65;
}
.checkbox.active:after {
    background-color: #4fbb65;
    left: 25px;
}
.checkbox:before {
    content: "";
    width: 50px;
    height: 20px;
    border-radius: 20px;
    background-color: #bfc0c4;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease 0s;
}
.checkbox:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    left: 0;
    top: -5px;
    background-color: #bfc0c4;
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease 0s;
}
.checkbox input {
    display: none;
}