/**
 * Estilos para el formulario de tarjeta de crédito
 */

.wc-credit-card-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.wc-credit-card-form .form-row {
    margin-bottom: 15px;
}

.wc-credit-card-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.wc-credit-card-form .required {
    color: #dc3545;
}

.wc-credit-card-form input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.wc-credit-card-form input[type="text"]:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.wc-credit-card-form input[type="text"].error {
    border-color: #dc3545;
}

.wc-credit-card-form .form-row-wide {
    width: 100%;
}

.wc-credit-card-form .form-row-first {
    float: left;
    width: 48%;
}

.wc-credit-card-form .form-row-last {
    float: right;
    width: 48%;
}

.wc-credit-card-form .clear {
    clear: both;
}

/* Responsive */
@media (max-width: 768px) {
    .wc-credit-card-form .form-row-first,
    .wc-credit-card-form .form-row-last {
        float: none;
        width: 100%;
        margin-bottom: 15px;
    }
} 