@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Special+Gothic+Condensed+One&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}
section{
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: #121321;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
}
section::before{
    content: "";
    position: absolute;
    height: 240px;
    width: 240px;
    border-radius: 50%;
    transform: translate(-150px,-100px);
    background: linear-gradient(90deg,#4229ff,#242424);
}
section::after{
    content: "";
    position: absolute;
    height: 240px;
    width: 240px;
    border-radius: 50%;
    transform: translate(150px,100px);
    background: linear-gradient(90deg,#4229ff,#242424);
}
.container{
    position: relative;
    height: 225px;
    width: 375px;
    z-index: 100;
}
.container .card{
    width: 100%;
    height: 100%;
    border-radius: 25px;
    padding: 25px;
    backdrop-filter: blur(25px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.front-face header,.front-face .logo{
    display: flex;
    align-items: center;
}
.front-face header{
    justify-content: space-between;
}
.front-face .logo img{
    width: 48px;
}
h5{
    font-size: 16px;
    font-weight: 400;
}
.front-face .chip{
    width: 50px;
}
.front-face .card-details{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}
h6{
    font-size: 10px;
    font-weight: 400;
}
h5.number{
    font-size: 18px;
    letter-spacing: 1px;
}
h5.name{
    margin-top: 18px;
}
.valid-date{
    margin-top: 45px;
}