body {
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    color: #6C7EFF;
}

/*Input Group*/
.input-group {
    margin-top: 25px;
}

.form-control {
    padding: 0 !important;
    border: none !important;
}

input[type='text'] {
    padding: 5px 0 3px 10px;
    width: 100%;
    font-weight: 500;
    color: #6C7EFF;

    border: none;
    border-bottom: 1px solid #6C7EFF;
    border-left: 1px solid #6C7EFF;
    border-top: 1px solid #6C7EFF;
}

input[type='text']:focus {
    outline: none;
}

::placeholder {
    color: #6C7EFF;
}

.add-button {
    margin-top: 0;
    padding: 4px 10px 4px 10px;
    color: #6C7EFF;
    background: none;

    border: none;
    border-top: 1px solid #6C7EFF;
    border-right: 1px solid #6C7EFF;
    border-bottom: 1px solid #6C7EFF;
    border-radius: 0 50px 50px 0;
}

.add-button:hover {
    cursor: pointer;
    color: rgba(32, 32, 32, 0.9);
}

.add-button:focus {
    outline: none;
}

    /*Custom buttons*/
#todo .task-buttons,
#complete .task-buttons{
    display: inline;
    float: right;
}

#todo .task-button,
#complete .task-button{
    position: relative;
    color: #6C7EFF;
    background: none;
    border: none;
}

#todo .check:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
}

#complete .check:before {
    content: "\f057";
    font-family: "Font Awesome 5 Free";
}

#todo .remove,
#complete .remove {
    font-size: 21px;
    padding-right: 20px;
}

#todo .complete,
#complete .complete {
    position: relative;
    font-size: 22px;
}

#todo .complete:hover {
    cursor: pointer;
    color: rgba(87, 222, 0, 0.92);
}

#complete .complete:hover {
    cursor: pointer;
    color: #EF4D76;
}

#todo .remove:hover,
#complete .remove:hover {
    cursor: pointer;
    color: #EF4D76;
}

#todo .complete:focus,
#complete .complete:focus,
#todo .remove:focus,
#complete .remove:focus {
    outline: none;
}

/*List items*/
#todo,
#complete {
    position: relative;
    margin: 10px;
    color: #6C7EFF;
}

#todo {
    margin-top: 40px;
    font-weight: 500;
}

ul#todo:empty:after {
    align-content: center;
    content: 'You have nothing to do';
    font-weight: 400;
    color: rgba(108, 126, 255, 0.57);
}

ul#complete:not(:empty) {
    padding: 60px 0 0 0;
}

ul#complete:not(:empty):before {
    content: '';
    width: 200px;
    height: 2px;
    background: rgba(108, 126, 255, 0.57);

    position: absolute;
    top: 30px;
    left: 45%;

    margin: 0 0 0 -75px;
}

#complete {
    font-weight: 400;
    text-decoration: line-through;
}

ul {
    padding: 0;
    list-style: none;
}

.list-item {
    margin-top: 15px;
}

/*Clear Fix*/
.group:after {
    content: "";
    display: table;
    clear: both;
}