body{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #222;
}

.login-container{
    width: 450px;
    height: 500px;
    border-radius: 10px;
    box-shadow: inset 0 0 20px 5px rgb(255, 81, 110);
    border: none;
}
.register-container{
    width: 450px;
    height: 500px;
    border-radius: 10px;
    border: none;
    box-shadow: inset 0 0 20px 5px rgb(255, 81, 110);
}

.emailError,
.passwordError,
.anyError{
    color: yellow;
}

.homeBtn{
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 5px 10px;
    position: fixed;
    top: 20px;
    left: 20px;
}
.homeBtn a{
    color: #fff;
    text-decoration: none;
}

.btn.btn-primary{
    background-color: rgb(255, 55, 88);
    border: none;
}
.navbar{
    background-color: rgb(255, 55, 88);
    padding:    0px 0;
}

.footer{
    background-color: rgb(255, 55, 88);
}


.card{
    background-color: #212121;
    color: #fff;
    box-shadow: inset 0 0 15px 2px rgb(255, 81, 110);
}

.navbar img{
    width: 60px;
    height: 60px;
    border: 1px solid #212121;
}

#notification .alert{
    background-color: rgb(255, 81, 110);
    border: none;
    color: #fff;
}

.toDo-list,
.userData-container{
    height: 450px;
    box-shadow: inset 0 0 20px 5px rgb(255, 81, 110);
}

.toDoInput{
    border: 1px solid rgb(255, 81, 110);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    outline: none;
}
.toDoBtn{
    background-color: rgb(255, 81, 110);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.toDoStore{
    height: 290px;
    /* border: 1px solid rgb(219, 149, 161); */
}

#toDoStore li{
    list-style-type: none;
    background-color: rgb(255, 81, 110);
}
.tick{
    color: #fff;
    right: 25px;
    top: 3px;
    cursor: pointer;
}
.tick:hover i{
    color: greenyellow;
}
.cross{
    color: #fff;
    right: 4px;
    top: 3px;
    cursor: pointer;
}
.cross:hover i{
    color: #000;
}
.taskText.taskTextlineOver{
    text-decoration: line-through;
}
#toDoStore li.taskBgChange{
    background-color: green;
}

.userData{
    display: inline-block;
    width: 175px;
}
.userData1{
    display: inline-block;
    width: 100px;
}
#userInfo .tasks-info:first-child{
    color: yellow;
}
#userInfo .tasks-info:nth-child(2){
    color: greenyellow;
}
#userInfo .tasks-info:nth-child(3){
    color: rgb(255, 81, 110);
}

#userInfo > div h5:first-child{
    text-transform: capitalize;
}

.table-container{
    width: 600px;
    height: 50%;
}

/* .............  Responsiveness   ...................... */

@media (max-width: 992px) {
    body{
        height: 100%;
    }
    .navbar-nav .nav-item button{
        background-color: transparent !important;
        color: #fff !important;
        border: 0 !important;
        a{
            color: #fff !important;
        }
    }
    .dashboard{
        padding: 30px 0 !important;
    }
    .dashboard .container{
        width: 95% !important;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
    .dashboard .container .toDo-list,
    .dashboard .container .userData-container{
        margin: 0 !important;
        width: 80% !important;
    }
}
@media (max-width: 768px) {
    .dashboard .container .toDo-list,
    .dashboard .container .userData-container{
        width: 90% !important;
    }
}
@media (max-width: 650px) {
    .table-container{
        width: 400px;
    }
    .table-container th,
    .table-container td{
        font-size: 13px;
    }
}
@media (max-width: 550px) {
    .dashboard .container .toDo-list,
    .dashboard .container .userData-container{
        width: 100% !important;
        padding: 35px 30px !important;
    }
}
@media (max-width: 480px) {
    .register-container,
    .login-container{
        height: 440px;
        width: 95% !important;
        padding: 35px 30px !important;
    }
}
@media (max-width: 380px) {
    .dashboard .container{
        width: 100% !important;
    }
    .toDoInput{
        font-size: 13px !important;
    }
    .toDoBtn i{
        font-size: 15px !important;
    }
    .taskItem {
        font-size: 13px !important;
    }
    #userInfo > div h5{
        font-size: 15px !important;
    }

    .register-container,
    .login-container{
        font-size: 13px !important;
    }
    .form-control{
        font-size: 13px !important;
    }
    .btn.btn-primary{
        font-size: 13px !important;
    }
}