/* Bank of America Payment Gateway Styles */

/* Payment Method Icon */
.woocommerce-checkout .payment_method_boa_gateway img {
    width: 160px; /* Increased logo size for better visibility */
    height: auto;
    display: inline-block;
    vertical-align: right;
    margin-right: 60px; /* Increased spacing between logo and text */
    border-radius: 8px; /* Smoother rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Enhanced shadow for depth */
    background-color: #ffffff; /* White background for contrast */
    padding: 6px; /* Padding for breathing room */
}


/* Payment Fields Styling */
#boa_card_number,
#boa_card_expiry,
#boa_card_cvc {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

#boa_card_number:focus,
#boa_card_expiry:focus,
#boa_card_cvc:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.3);
}

/* Sandbox Guidance Notice */
.boa-sandbox-guidance {
    background-color: #fff3cd;
    border-left: 4px solid #ffeeba;
    padding: 10px 15px;
    margin-top: 10px;
    font-size: 14px;
    color: #856404;
    border-radius: 4px;
}

/* Submit Button Styling */
#place_order {
    background-color: #0056b3;
    color: #ffffff;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#place_order:hover {
    background-color: #004494;
}

/* Error Message Styling */
.woocommerce-error {
    border-left: 4px solid #ff0000;
    background-color: #ffe6e6;
    padding: 10px;
    color: #cc0000;
    border-radius: 4px;
}
