* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    min-height: 100vh;
    background-image: url("../images/bg.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container {
    width: 35%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 8px 0px #eee;
}
.input-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
input[type="text"] {
    width: 65%;
    height: 40px;
    border-radius: 5px;
    border: 1px solid rgba(0, 128, 0, 0.493);
    padding-left: 10px;
    font-size: 17px;
}
input[type="text"]:focus {
    outline: none;
}
.btn {
    width: 30%;
    height: 40px;
    border: none;
    background-color: rgb(6, 177, 6);
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}
.order-container {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}
.order {
    padding: 10px;
    border-bottom: 1px solid rgba(156, 156, 156, 0.65);
    position: relative;
}
.order-container .order:last-child {
    border: none;
    margin-bottom: 15px;
}
.order input[type="checkbox"] {
    appearance: none;
}
.order label {
    position: relative;
    padding-left: 15px;
    color: #121212;
    font-size: 18px;
}
.order label::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    position: absolute;
    left: -15px;
    background-color: red;
}
.order input[type="checkbox"]:checked + label::before {
    background-color: rgb(7, 195, 7);
}
.delete {
    color: red;
    font-size: 1.1em;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
.btn-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
}
.btns {
    width: 30%;
    height: 35px;
    border: none;
    background-color: rgb(7, 195, 7);
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
@media (max-width: 700px) {
    .container {
        width: 80%;
    }
}
