body, html {
    background-color: black;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.blobs {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(141, 65, 204, 0.7) 0%,   /* center = purple */
    hsl(0, 0%, 12%) 100%             /* edges = black */
  );
  filter: blur(80px);
}
#blob1 {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
}
#blob2 {
  top: 0;
  left: 0;
  transform: translate(50%, 30%);
  width: 100vw;
  background: radial-gradient(
    circle,
    rgba(69, 32, 204, 0.6) 0%,
    hsl(0, 0%, 12%) 100%
  ) !important;
  height: 100vh;
}

.myCont {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.card {
    position: relative;
    align-self: center;
    border: 3px solid rgb(127, 32, 204);
    background-color: hsla(0, 0%, 92%, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgb(112, 32, 204);
    width: 80%;
    max-width: 400px;
    border-radius: 40px;
    overflow: hidden;
}

.cardInsideCont {
    display: flex;
    width: 400%;
    transition: transform 0.5s ease-in-out;
}

.cardInside {
    width: 25%;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 40px;
}

.cardInside * {
    box-sizing: border-box;
}


.card h1 {
    color: black;
    font-family: "Poppins";
    font-weight: 700;
    margin: 0;
    font-size: 2.2rem;
}


#packUp {
    color: hsl(0, 0%, 10%);
    font-family: "Poppins";
    margin-block: 15px 0;
    font-size: 1.25rem;
}
.packName {
    font-weight: 700;
    color: transparent !important;
    font-size: 1.75rem;
    background-clip: text !important;
    background: linear-gradient(to right, rgb(154, 39, 221), rgb(159, 47, 224), rgb(194, 89, 255), rgb(152, 45, 214));
}

.packSub {
    margin: 0;
    font-family: "Poppins";
    font-size: 1rem;
    font-style: italic;
    color: hsl(0, 0%, 20%);
}

#note {
    color: hsl(0, 0%, 10%);
    margin: 0;
    font-size: 1.25rem;
    font-family: "Poppins";
}

.packPrice, .price {
    margin-block: 10px 14px;
    font-family: "Poppins";
    font-weight: 600;
    font-size: 1.4rem;
    color: hsl(0, 0%, 10%);
}

.cardInBtnCont {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.cardInBtnCont button, .cardInBtnCont a {
    padding-block: 5px;
    border: none;
    outline: none;
    background-color: hsl(0, 0%, 5%);
    color: white;
    text-align: center;
    font-family: "Poppins";
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    width: 100px;
    transition: color .3s ease-in-out;
}
.cardInBtnCont button:hover, .cardInBtnCont a:hover {
    color: hsl(0, 0%, 75%);
}


/*Invoice Section*/

.cardInside input {
    font-size: 1.1rem;
    padding: 8px 14px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid rgba(127, 32, 204, 0);
    background-color: hsl(0, 0%, 80%);
    outline: none;
    margin-block: 10px;
    width: 100%;
    transition: border-bottom .2s ease-in-out;
}
.cardInside input:focus {
    border-bottom: 2px solid rgb(127, 32, 204);
}
.cardInside form p {
    margin-block: 10px 0;
    font-size: 1rem;
    color: hsl(0, 0%, 5%, 60%);
    font-weight: 600;
}

.form-select {
    padding: 6px 10px;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 10px;
    color: hsl(0, 0%, 40%);
    cursor: pointer;
    outline: none;
    border: none;
    background-color: hsl(0, 0%, 80%);
}


#refundButton {
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 1.15rem;
    color: hsl(0, 0%, 10%);
    outline: none;
    font-family: "Poppins";
    border: none;
    cursor: pointer;
    margin-top: 20px;
}



/*Responsiveness*/

@media only screen and (max-width: 400px) {
    .cardInside {
        padding: 30px;
    }
    .card h1 {
        font-size: 1.78rem;
    }
    #packUp {
        font-size: 1rem;
    }
    #packName {
        font-size: 1.5rem;
    }
    #packSub {
        font-size: 1rem;
    }
    #note {
        font-size: 1.15rem;
    }
    #price {
        font-size: 1.25rem;
        margin-block: 0 20px;
    }
}