*{
    border: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    /* background-color: black; */
    display: grid;
    place-content: center;
    /* height: 100vh; */
}
.main{
    overflow-y: scroll;
    height: 300px;
    background-color: white;
    padding: 20px;
    /* border: 1px solid black; */
    box-shadow: 0px 0px 5px ;
    width: 500px;
}
.mad{
    position: static;
    display: flex;
    align-items: center;
    gap: 35px;
    /* background-color: red; */
    height: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #000;
}
#todo{
    position: relative;
}
#todo::before{
    content: "";
    border-bottom: 3px solid red;
    width: 70px;
    height: 10px;
    color: red;
    top: 15px;
    left: -10px;
    position: absolute;
}
#todo span{
    border-radius: 50%;
    background-color: rgb(226, 209, 209);
    height: px;
    width: 30px;
    padding: 1px 5px;
    font-size: 12px;
}
.todos{
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid grey;
}
.content{
    display: flex;
    width: 100%;
    flex-direction: column; 
}
 .content h3{
    margin-bottom: -10px;
}
.content p{
    color: grey;
    font-size: 15px;
}
.info{
    display: flex;
    gap: 10px;
    align-items: center;
    color: grey;
}
.date{
    display: flex;
    gap: 10px;
    align-items: center;
}
.svg{
    cursor: pointer;
}
.form{
    width: 600px;
    /* background-color: wheat; */
    box-shadow: 0px 0px 5px ;
    padding: 20px;
    /* top: -100px; */
    z-index: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    left: -50px;
    transition: all 0.5s, transform 1ms;
}
.task{
    width: 100%;
    margin-bottom: 10px;
    height: 25px;
    outline: none;
}
.text{
    width: 100%;
    resize: none;
    margin-bottom: 10px;
    /* height: 75px; */
    outline: none;   
}
.bar{
    display: flex;
    justify-content: space-between;
}
.input{
    display: flex;
    gap: 10px;
}
.assign{
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid grey;
    width: 100px;
}
.assign input{
    width: 100%;
    outline: none;
}
.cancel{
    padding: 5px 10px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid grey;
    cursor: pointer;
}
.add{
    background-color: red;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid grey;
    cursor: pointer;
    color: white;
}
.hidden {
    transform: translateY(-30rem);
    height: 0;
    padding: 0 2.25rem;
    margin-bottom: 0;
    opacity: 0;
}
