/* Form Container */
form.pmpro_form > div {
    margin: 20px 0;
}

/* Heading Styling */
#pmpro_form .pmpro_checkout h3 {
    display: block;
    font-size: 28px;
    color: #fff;
    background: linear-gradient(135deg, #1a83be, #176ea8);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

/* Headings inside form */
.pmpro_checkout h3 span {
    color: #fff;
    margin: 10px;
}

/* Remove default horizontal line */
hr {
    display: none;
}

/* Form Fields Styling */
.pmpro_checkout-fields {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Individual Field Styling */
form.pmpro_form .pmpro_checkout-field {
    width: 48%;
    display: inline-block;
    margin-bottom: 15px;
}

/* Labels */
.pmpro_checkout .pmpro_checkout-fields .pmpro_checkout-field label {
    text-align: left;
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

/* Input Fields */
form.pmpro_form .input, 
form.pmpro_form select {
    width: 100%;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #1a83be;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

/* Input Focus Effect */
form.pmpro_form .input:focus,
form.pmpro_form select:focus {
    border-color: #176ea8;
    box-shadow: 0 0 5px rgba(26, 131, 190, 0.5);
    outline: none;
}

/* Submit Button */
.pmpro_btn.pmpro_btn-submit-checkout {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 30px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #1a83be, #176ea8);
    border-radius: 4px;
    border: none;
    color: #fff;
    cursor: pointer;
    display: block;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

/* Submit Button Hover Effect */
.pmpro_btn.pmpro_btn-submit-checkout:hover {
    background: linear-gradient(135deg, #176ea8, #1a83be);
    box-shadow: 0 4px 8px rgba(26, 131, 190, 0.3);
}

/* Dropdown Styling */
form.pmpro_form select {
    width: 100%;
    border: 1px solid #1a83be;
    background: #fff;
    padding: 10px;
}

/* Username Field Full Width */
.pmpro_checkout-field.pmpro_checkout-field-username {
    display: block !important;
    width: 100%;
}

/* CVV Field Fix */
.pmpro_checkout-field.pmpro_payment-cvv {
    clear: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    form.pmpro_form .pmpro_checkout-field {
        width: 100%;
    }

    .pmpro_btn.pmpro_btn-submit-checkout {
        width: 100%;
    }
}

