/**
 * Stripe Element Styles
 *
 * Styles for Stripe.js payment elements (card input, etc.)
 * These integrate with Tailwind's design system.
 */

.StripeElement {
    padding: 12px;
    border: 1px solid #d1d5db; /* gray-300 */
    border-radius: 0.5rem;
    background-color: white;
    transition: border-color 0.15s ease, outline 0.15s ease;
}

.StripeElement--focus {
    border-color: #06b6d4; /* cyan-500 */
    outline: 2px solid #67e8f9; /* cyan-300 */
    outline-offset: 2px;
}

.StripeElement--invalid {
    border-color: #ef4444; /* red-500 */
}

.StripeElement--webkit-autofill {
    background-color: #fefce8 !important; /* yellow-50 */
}
