*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:linear-gradient(135deg,#ff4da6,#ff80bf);

    min-height:100vh;

    display:flex;

    justify-content:center;

    padding:40px;

}

.container{

    width:100%;
    max-width:900px;

}

h1{

    color:white;

    text-align:center;

    margin-bottom:25px;

}

.card{

    background:white;

    padding:25px;

    border-radius:15px;

    margin-bottom:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

label{

    display:block;

    margin-top:15px;

    margin-bottom:8px;

    font-weight:bold;

}

input{

    width:100%;

    padding:14px;

    border:1px solid #ddd;

    border-radius:10px;

}

button{

    width:100%;

    margin-top:20px;

    background:#ff2d7a;

    color:white;

    border:none;

    padding:15px;

    border-radius:10px;

    font-size:17px;

    cursor:pointer;

}

button:hover{

    background:#e6005c;

}

.lists{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.list{

    background:white;

    border-radius:15px;

    padding:20px;

    box-shadow:0 8px 20px rgba(0,0,0,.1);

}

.list h2{

    margin-bottom:20px;

    color:#ff2d7a;

}

.person{

    padding:15px;

    border-radius:10px;

    margin-bottom:15px;

}

.person strong{

    display:block;

}

.person span{

    color:#777;

}

.paid{

    background:#ffe6f2;

    border-left:5px solid #ff2d7a;

}

.pending{

    background:red;

    border-left:5px solid orange;

}

.retry{

    margin-top:12px;

    background:red;

}

.retry:hover{

    background:red;

}

.success{
    background:#d4edda;
    color:#155724;
    padding:20px;
    border-radius:10px;
    text-align:center;
    margin-bottom:20px;
}

@media(max-width:700px){

.lists{
