* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #121212;
}
body {
    min-height: 100vh;
    padding-top: 10vh;
    background-color: #6b096c;
}
input {
    appearance: none;
}
.container {
    width: fit-content;
    margin: 0 auto;
    background-color: white;
    box-shadow: 2px 2px 8px 0px rgb(17, 16, 16);
    border-radius: 8px;
}
.checkbox-container {
    padding: 15px;
    border-bottom: 1px solid rgb(209, 209, 209);
    position: relative;
}
.container .checkbox-container:last-child {
    border-bottom: 0px;
}
.checkbox-container label {
    padding-left: 30px;
}
.checkbox-container label::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1px solid rgb(209, 209, 209);
    position: absolute;
    top: 4px;
    left: 0;
    transform: translate(50%, 50%);
}
.checkbox-container::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    background-color: rgb(209, 209, 209);
    position: absolute;
    top: 0;
    left: 40px;
}
input:checked + label::before {
    background-color: rgba(0, 0, 255, 0.6);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 255, 0.6);
}
input:checked + label {
    text-decoration: line-through;
}
.bg {
    background-color: #12121213;
}
