@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');

* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: white;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(rgb(123, 123, 255), rgb(255, 154, 171));
}

.card {
    height: 400px;
    width: 740px;
    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);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    backdrop-filter: blur(25%);
}

.card .top {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card .top .top-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 80%;
}

.top-left img {
    width: 54px;
}

.chip {
    width: 20%;
}

.bottom {
    height: 80%;
    width: 100%;
    padding: 12px 4px;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    flex-direction: column;
}

.bottom .card-num {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
}

.bottom .card-num h1 {
    letter-spacing: 2.4px;
}

.bottom .details {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-direction: row;
    letter-spacing: 1px;
}

.valid-till {
    letter-spacing: 1px;
}