.stripe-pay-wrapper {
    max-width: 420px;
    margin: 40px auto;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    background: #ffffff;
}

#stripePayForm h3 {
    margin-bottom: 20px;
    text-align: center;
}

#stripePayForm input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

#stripePayForm button {
    width: 100%;
    padding: 14px;
    background: #6772e5;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

#stripePayForm button:hover {
    background: #5469d4;
}

@media (max-width: 480px) {
    .stripe-pay-wrapper {
        margin: 20px;
    }
}


.stripe-cancel-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f7f8fa;
}

.stripe-cancel-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 14px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.stripe-cancel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ff4d4f;
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
}

.stripe-cancel-box h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.stripe-cancel-box p {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
}

.stripe-cancel-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #6772e5;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
}

.stripe-cancel-btn:hover {
    background: #5469d4;
}

