*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main{
    width: 100%;
    height: 100vh;
    background-color: skyblue;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main .row-top{
    width: 500px;
    border-radius: 10px;
    background-color: white;
    padding: 30px;
    box-shadow: 0 0 10px rgb(0,0,0,0,.18);
}
.main .row-top .row-top-inner{
    display: flex;
    align-items: center;
    justify-content: center;
}
.main .row-top .row-top-inner h2{
    text-align: center;
    margin: 20px 0px;
}
.main .row-top .row-top-inner input{
    padding: 10px ;
    width: 60%;
    margin-right: 10px;
    border-radius: 5px;
    border: 1px solid grey;
}
.main .row-top .row-top-inner .button{
    padding: 10px 30px;
    background-color: blue;
    border: none;
    color: white;
    border-radius: 5px;
}
.main .row-top .row-top-inner1{
    border-radius: 10px;
   margin: 10px 0px;
   background-color: rgb(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px ;
}
.main .row-top .row-top-inner1 h2{
    text-align: center;
    margin: 20px 0px;
}
.main .row-top .row-top-inner1 .input{
    padding: 10px ;
    width: 40%;
    height: auto;
    margin-right: 10px;
    border-radius: 5px;
    /* border: 1px solid grey; */
}
.main .row-top .row-top-inner1 .button2{
    padding: 10px 30px;
    background-color: rgb(9, 144, 31);
    border: none;
    color: white;
    border-radius: 5px;
}
.main .row-top .row-top-inner1 .button3{
    padding: 10px 30px;
    background-color: rgb(220, 69, 27);
    border: none;
    color: white;
    border-radius: 5px;
}
.main .over-flow{
height: 330px;
/* border: 1px solid red; */
overflow-y: scroll;
scrollbar-width: thin;
margin-top: 10px;
}