@media (max-width: 600px) {
  .inside {
    width: 90%;
    padding: 20px;
  }

  button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
*{
    padding: 0;
    margin: 0;
    box-sizing: content-box;
}
.main{
  background: #020024;
  background-image: url(./images/bgimage.jpg);
/* background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%); */
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    height: auto;
    padding: 40px 0;
}
.inside{
    background-color: rgb(0, 0, 0, 0.7) ;
    /* background-color: orange; */
    box-shadow: 0px 8px 25px #49DCEE;
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #49DCEE;
    max-height: 90vh;
}
.style-flex{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
button{
    /* padding: 15px 20px; */
    width: 20px;
    height: 20px;
}
button{
    padding: 18px;
    font-size: 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background-color: rgba(0, 255, 0, 0.15);
    color: #49DCEE;
    border: 1px solid #49DCEE;
    transform: 0.3s;
}
button:hover{
    background-color: #49DCEE;
    color: black;
    transform: scale(1.05);
    box-shadow: 0px 0px 15px #49DCEE;
}
.clr-btn{
    
    border-radius: 10px;
}
input{
    /* padding: 10px 25px; */
    background-color: rgba(0, 255, 0, 0.1);
    height: 60px;
    width: 100%;
    margin-bottom: 15px;
    border: 12px;
    text-align: right;
    /* padding: 15px; */
    font-size: 24px;
    color: #49DCEE;
    overflow-x: auto;
    border: 1px solid #49DCEE;

}