* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 254, 254, 0.847);
}

.navbar {
    padding: 20px;
    background-color: white !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.135);
}

.navbar-brand {
    color: rgb(4, 4, 222);
    display: flex;
    align-items: center;
    font-size: 25px;
    justify-content: center;
    margin: 0 0 0 15px;
}

.navbar-brand span {
    font-weight: 700;

}

.navbar .form button {
    font-size: 20px;
}

.navbar .form a:nth-child(1) {
    background-color: rgb(230, 228, 228);
    color: black;
    font-weight: 500;
}

.navbar .form button:nth-child(2) {
    background-color: rgb(4, 4, 222);
    color: white;
    font-weight: 500;
}

.navbar .form button:nth-child(2):active {
    background-color: black;
}

.navbar form .button:nth-child(1) i {
    color: rgb(4, 4, 222);
}

@media screen and (max-width: 390px) {
    .navbar .form button {
        font-size: 15px;
    }
}



#hero-section {
    width: 100%;
}

#hero-section .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

@media screen and (max-width: 460px) {
    #hero-section .top {
        flex-direction: column;
        text-align: center;
    }
}

#hero-section .top h1 {
    font-weight: 700;
    font-size: 35px;
    color: black;
}

#hero-section .top p {
    color: rgb(140, 140, 141);
    font-size: 18px;
}

#hero-section .top button {
    background-color: rgb(4, 4, 222);
    color: white;
    font-size: 20px;
}

#hero-section .top button:active {
    background-color: black;
}

.boxes {
    margin-top: 30px;
    width: 100%;
}

.boxes .box {
    width: 100%;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.194);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 10px 15px;
    margin: 15px 0;
}

.boxes .box .box-content {
    padding: 20px;
    text-align: center;
}

.boxes .box .box-content p {
    font-size: 18px;
    color: rgb(106, 106, 107);
    font-weight: 500;
}

.boxes .box .box-content h3 {
    font-size: 35px;
    color: rgb(0, 0, 0);
    font-weight: 700;
    line-height: 0;
}

.boxes .box i {
    font-size: 20px;
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boxes .box1 {
    border-top: 6px solid rgb(4, 4, 222);
}

.boxes .box2 {
    border-top: 6px solid green;
}

.boxes .box3 {
    border-top: 6px solid orange;
}

.boxes .box1 i {
    background-color: rgba(4, 4, 222, 0.17);
    color: rgb(4, 4, 222);
}

.boxes .box2 i {
    background-color: rgba(0, 128, 0, 0.17);
    color: green;
}

.boxes .box3 i {
    background-color: rgba(255, 166, 0, 0.17);
    color: rgb(198, 130, 3);
}

@media screen and (max-width: 768px) {
    .boxes .box {
        justify-content: space-evenly;
    }
}


.table-list {
    width: 100%;
    height: 100%;
}

.table-list table {
    width: 100%;
    text-align: center;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.135);
}

.ri-edit-2-line {
    color: rgb(4, 4, 222);
}

.ri-delete-bin-line {
    color: rgb(224, 5, 5);
}

.table td,
th {
    font-size: 20px;
    padding: 15px 10px;
}

.table i {
    font-size: 25px;
    cursor: pointer;
}

.list {
    display: flex;
    margin-top: 50px;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(4, 4, 222);
    padding: 15px;
    width: 100%;
    border-radius: 20px 20px 0 0;
}

.list h4 {
    font-size: 25px;
    font-weight: 600;
    color: white;
}

.list p {
    padding: 5px 10px;
    background-color: white;
    color: black;
    font-size: 20px;
    border-radius: 20px;
}

.add-task-modal .modal-header {
    background-color: rgb(4, 4, 222);
    color: white;
}
.add-task-modal .modal-header button{
    background-color: transparent;
    border: none;
    transform: rotate(45deg);
}
.add-task-modal .modal-header button:active{
    box-shadow: none;
}
.add-task-modal .modal-header button i{
    font-size: 35px;
}
.add-task-modal .modal-header h1{
    font-size: 35px;
    font-weight: 600;
}
.add-task-modal label{
    font-size: 18px;
}
.add-task-modal input{
    font-size: 20px;
    padding: 10px;
    color: black;
}
.add-task-modal input:focus{
    box-shadow: none;
}
.add-task-modal select{
    font-size: 20px;
    padding: 10px;
    color: black;
}
.add-task-modal select:focus{
    box-shadow: none;
}
.add-task-modal .modal-footer{
    padding: 10px;
}
.add-task-modal .modal-footer button{
    font-size: 20px;
    padding: 5px;
    color: white;
}
.add-task-modal .modal-footer button:nth-child(1){
    width: 150px;
    background-color: rgb(4, 4, 222);
}
.add-task-modal .modal-footer button:nth-child(2){
    width: 100px;
    background-color: rgb(153, 151, 151);
}

table{
    overflow-x: scroll;
}
table #task-head tr{
    background-color: rgb(192, 189, 189);
}
table #emptyRow h2{ 
color: rgba(128, 128, 128, 0.77);
}
table #emptyRow i{
    font-size: 50px;
    color: gray;
}

.orange{
    color: rgb(195, 128, 2) !important;
   font-weight: 600;
}
.green{
    color: green !important;
   font-weight: 600;
}














/* SIGNUP-PAGE-STYLING-START --------------------- */

.signup-box{
    width: 500px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgb(0, 0, 0, .3);
}
.signup-box h1{
    font-size: 40px;
    font-weight: 700;
    color: black;
}
.signup-box p{
    color: black;
    font-size: 18px;
    margin-bottom: 30px;
}
.signup-box p a{
    color: rgb(0, 0, 151);
    text-decoration: none;
}
#signup-form input{
    font-size: 20px;
    padding: 10px;
    border: 2px solid rgba(0, 0, 0, 0.329);
}
#signup-form input:focus{
    box-shadow: none;
    border: 2px solid rgba(0, 0, 0, 0.61);
}
#signup-form button{
    font-size: 20px;
    background-color: rgb(4, 4, 222);
    margin-top: 10px;
    transition: .5s;
}
#signup-form button:active{
    scale: .9;
}
.signup-message .alert button:focus{
  box-shadow: none;
}

/* SIGNUP-PAGE-STYLING-END --------------------- */













/* LOGIN-PAGE-STYLING-START --------------------- */

.login-box{
    width: 500px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgb(0, 0, 0, .3);
}
.login-box h1{
    font-size: 35px;
    font-weight: 700;
    color: black;
}
.login-box p{
    color: black;
    font-size: 18px;
    margin-bottom: 30px;
}
.login-box p a{
    color: rgb(0, 0, 151);
    text-decoration: none;
}
#login-form input{
    font-size: 20px;
    padding: 10px;
    border: 2px solid rgba(0, 0, 0, 0.329);
}
#login-form input:focus{
    box-shadow: none;
    border: 2px solid rgba(0, 0, 0, 0.61);
}
#login-form button{
    font-size: 20px;
    background-color: rgb(4, 4, 222);
    margin-top: 10px;
    transition: .5s;
}
#login-form button:active{
    scale: .9;
}
.login-message .alert button:focus{
  box-shadow: none;
}
/* LOGIN-PAGE-STYLING-END --------------------- */




/* CONGRAGES-MESSAGE-START */

.congrates-message button:focus{
   box-shadow: none;
}

/* CONGRAGES-MESSAGE-END */

@media screen and (max-width: 550px) {
    .signup-box, .login-box{
        width: 95%;
    }
    .signup-box h1, .login-box h1{
        font-size: 25px;
    }
}
  
@media screen and (max-width: 450px) {
    .signup-box, .login-box{
        width: 95%;
    }
    .signup-box h1, .login-box h1{
        font-size: 25px;
    }
    .signup-box p, .login-box p{
        font-size: 14px;
    }
    .signup-box #signup-form input, .login-box #login-form input, .add-task-modal input, .update-task-modal input{
        font-size: 15px;
    }
    .signup-message, .login-message, .congrates-message{
        font-size: 13px;
    }
}




@media screen and (max-width: 600px){
    .table-list table th, td{
        font-size: 15px;
    }
}
@media screen and (max-width: 450px) {
  .table-list table th{
        font-size: 13px;
    }
  .table-list table td{
        font-size: 13px;
    }
    .ri-edit-2-line {
    font-size: 13px !important;
}

.ri-delete-bin-line {
 font-size: 13px !important;
}
}