@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: url('https://images.pexels.com/photos/1287145/pexels-photo-1287145.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.payment-btn-container {
    display: flex;
    justify-content: center;
}

.payment-btn {
    height: 55px;
    width: 70%;
    border-radius: 5px;
    margin-top: 20px;
    border: none;
    background: #025efe;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s all ease;
}

.payment-btn.loading {
    opacity: 0.8;
    cursor: not-allowed;
}

.payment-btn.loading span.text {
    display: inline-block;
    line-height: 55px;
    transform: translateY(-35%);
}

.error {
    font-size: 12px;
    font-weight: 400;
    color: #e90116;
}

.thank-you-container h3 {
    font-size: 25px;
}

.thank-you-container p {
    font-weight: 400;
    font-size: 12;
    color: #555;
}

.link {
    color: #2f6bcd;
}