.checkoutForm{
    border: 1px solid black;
    width: 400px;
    height: 500px;
    overflow: scroll;
    position: absolute;
    left: 50%;
    top: -50%;
    transition: all .8s ease-in-out;
    background-color: rgb(255, 255, 255);
    transform: translate(-50%,-50%);
    padding: 30px;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}
.checkoutForm input{
    width: 100%;
    padding: 5px;
    margin-bottom: 20px;
}
.checkoutForm span{
    position: absolute;
    right: 10px;
    top: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #000;
    color: #fff;
}
.checkoutForm span:hover{
    background-color: rgb(43, 43, 43);
    cursor: pointer;
}

.payWithPaytm{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.payWithPaytm > img{
    width: 40%;
}

input[type=submit]{
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    border: none;
}
input[type=submit]:hover{
    cursor: pointer;
    background-color: rgb(44, 43, 43);
}

.showOverlay{
    opacity: 1;
    z-index: 1;
}
.showLoginForm{
    transition: all .8s ease-in-out;
    top: 50%;
    z-index: 2;
}