*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.container{
    background-color: white;
    display: flex;
    height: 100svh;
    justify-content: center;
    align-items: center;
}

.wallet_container{
    width: 400px;
    height: 300px;
    background-color: #0b0b0b;
    border-radius: 20px;
    border: solid 2px #5b5e5f;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 5px;
}

.wallet_desc{
    color: #93937f;
    font-size: 10px;
    text-align: center;
    font-weight: 600;
}

.wallet_green{
    background-color: #03c73e;
    border-radius: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 4px;
}

.wallet_green_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px 5px 40px ;
    
}

.wallet_green_head h1, div{
    color: white;
}

.wallet_green_head h1{
    font-size: 15px;
}

.wallet_green_head div{
    font-size: 13px;
}

.wallet_leather{
    background-color: #212120;
    
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}


.wallet_info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.balance_heading{
    color: #93937f;
    font-size: 12px;
    font-weight: 600;
}

.balance{
    color: white;
    font-size: 25px;
}

.balance_footer{
    color: #93937f;
    font-size: 12px;
    font-weight: 600;
}

.wallet_dashed_container{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-style: dashed;
    border-color: #50504b;
    border-width: 2px;
    margin: 4px;
    border-radius: 20px;
    box-shadow: 0 0 4px 10px rgba(0, 0, 0, 0.1) ;

}

.top_green_curve_border{
    position: absolute;
    top: -40px;
    border-radius: 100%;
    z-index: 2;
    padding: 5px;
    border-style: dashed;
    border-color: #50504b;
    border-width: 2px;
    margin: 4px;
    /* background-color: #212120; */
    background-image: url('./images/leather_image.png');
    box-shadow: 0 0 4px 10px rgba(0, 0, 0, 0.1) ;
}
.top_green_curve{
    background-color: #03c73e;
    width: 100px;
    height: 50px;
    border-radius: 100%;
}

.bottom_green_curve_border{
    position: absolute;
    bottom: -52px;
    border-radius: 100%;
    z-index: 2;
    padding: 5px;
    border-style: dashed;
    border-color: #50504b;
    border-width: 2px;
    margin: 4px;
    /* background-color: #212120; */
    background-image: url('./images/leather_image.png');
    box-shadow: 0 0 4px 10px rgba(0, 0, 0, 0.1) ;
}
.bottom_green_curve{
    background-color: #03c73e;
    width: 60px;
    height: 50px;
    border-radius: 100%;
}



.leather_img_con{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.leather_img{
    width: 100%;
    height: 100%;
}