css
Copy code


#stripePaymentForm .container {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 400px;
}

#stripePaymentForm .form-row {
    margin-bottom: 20px;
}

#stripePaymentForm label {
    color: #6b7c93;
    font-weight: 300;
    letter-spacing: 0.025em;
}

#stripePaymentForm input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#stripePaymentForm button {
    background: #00a4ff;
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#stripePaymentForm button:hover {
    background-color: #007acb;
}

#stripePaymentForm #card-element {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
}

#stripePaymentForm #card-errors {
    color: #fa755a;
}
.stripe-h2{
    font-size: 24px;
    margin-top: 23px;

}