.thankyou-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
}

.thankyou-card {
    background: #ffffff;
    max-width: 78rem;
    width: 100%;
    border-radius: 2rem;
    padding: 5rem 4rem;
    text-align: center;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
}

/* soft gradient halo */
/* .thankyou-card:before {
    content: "";
    position: absolute;
    width: 35rem;
    height: 35rem;
    background: linear-gradient(135deg, #0279d3, #61adf4);
    opacity: .08;
    border-radius: 50%;
    top: -15rem;
    left: -15rem;
} */

.thankyou-card:before {
    content: "";
    position: absolute;
    width: 40rem;
    height: 40rem;
    background: linear-gradient(135deg, #0279d3, #61adf4);
    opacity: .08;
    border-radius: 50%;
    top: -15rem;
    left: -15rem;
}

/* Right-bottom halo */
.thankyou-card:after {
    content: "";
    position: absolute;
    width: 28rem;
    height: 28rem;
    background: linear-gradient(135deg, #61adf4, #0279d3);
    opacity: .06;
    border-radius: 50%;
    bottom: -14rem;
    right: -14rem;
}


/* check icon */
.thankyou-icon {
    width: 7rem;
    height: 7rem;
    background: linear-gradient(135deg, #0279d3, #61adf4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    color: #fff;
    font-size: 3.5rem;
    box-shadow: 0 1rem 3rem rgba(2, 121, 211, .35);
}

.thankyou-title {
    font-size: 4.2rem;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 1.5rem;
}

.thankyou-text {
    font-size: 1.8rem;
    color: #6b7c93;
    line-height: 1.7;
    max-width: 50rem;
    margin: 0 auto 4rem;
}

/* Button */
.giffy-banner-btn {
    background: linear-gradient(135deg, #0279d3 0%, #61adf4 100%);
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    padding: 1.2rem 3.5rem;
    transition: all .3s ease;
    display: inline-block;
}

.giffy-banner-btn:hover {
    background-color: #166e7b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 137, 153, .3);
}

/* Mobile */
@media(max-width:480px) {
    .thankyou-card {
        padding: 4rem 2.5rem;
    }

    .thankyou-title {
        font-size: 3rem;
    }

    .thankyou-text {
        font-size: 1.5rem;
    }
}

/* Tablet */
@media(max-width:767px) {
    .thankyou-title {
        font-size: 3.5rem;
    }

    .thankyou-text {
        font-size: 1.6rem;
    }
}