body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(64, 150, 187);
    display: flex;
    justify-content: center;
    margin: 50px;
}

.container {
    background-color: rgb(17, 186, 186);
    border: black solid 1px;
    display: flex;
    border-radius: 10px 10px;
}

.left {
    background-color:  yellow;
    justify-content:  start;
    display: flex;
    flex-direction: column;
    padding: 10px;
    flex: 1;
}

.right {
    background-color: red;
    justify-content: center;
    padding: 10px;
    flex: 2;
}

.checkboxs {
    display: flex;
    flex-direction: column;
}