 img.logoUnblock {
        height: 30px;
        width: 30px;

    }
svg.apple-icon {
    width: 25px;
    height: 25px;
}

button#ub-venmo-payment {
    margin-right: 46px !important;
}

img.ub-payment-icon {
    width: 30px;
    height: 30px;
}
    .ub-payment-container {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 12px;
        padding: 0;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        color: #333;
        max-width: 100%;
        overflow: hidden;
    }
    
    .ub-payment-header {
        background: rgba(255, 255, 255, 0.95);
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .ub-logo {
        font-size: 24px;
        font-weight: bold;
        color:#210233;
        margin-bottom: 10px;
    }
    
    .ub-payment-info {
        margin-top: 10px;
    }
    
    .ub-paying-text {
        font-size: 14px;
        color: #666;
        margin-bottom: 5px;
    }
    
    .ub-amount {
        font-size: 32px;
        font-weight: bold;
        color: #333;
        margin-bottom: 5px;
    }
    
    .ub-merchant {
        font-size: 14px;
        color: #666;
    }

    .ub-progress-container {
        background: rgba(255, 255, 255, 0.95);
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .ub-progress-step {
        display: flex;
        align-items: center;
        gap: 8px;
        opacity: 0.5;
        transition: opacity 0.3s ease;
    }
    
    .ub-progress-step.ub-step-active {
        opacity: 1;
    }
    
    .ub-step-number {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: #666;
        transition: all 0.3s ease;
    }
    
    .ub-progress-step.ub-step-active .ub-step-number {
        background: #210233;
        color: white;
    }
    
    .ub-step-text {
        font-size: 14px;
        font-weight: 500;
        color: #666;
    }
    
    .ub-progress-step.ub-step-active .ub-step-text {
        color: #210233;
    }
    
    .ub-progress-line {
        width: 60px;
        height: 2px;
        background: #ddd;
        margin: 0 20px;
    }
    
    .ub-tabs-container {
        background: rgba(255, 255, 255, 0.95);
        padding: 0 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .ub-tab {
        display: inline-block;
        padding: 12px 20px;
        background: #f8f9fa;
        border: 1px solid #ddd;
        border-bottom: none;
        border-radius: 8px 8px 0 0;
        cursor: pointer;
        font-weight: 500;
        color: #333;
    }
    
    .ub-tab-active {
        background: white;
        border-color: #210233;
        color: #210233;
    }
    
.ub-form-container {
    display: flex;
    flex-wrap: wrap; /* permite que el contenido se acomode en varias líneas */
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
    background: white;
    padding: 1rem;
}

/* Contenedores internos de texto o columnas */
.ub-disclaimer {
    flex: 1 1 300px; /* flexible, pero mínimo 300px antes de saltar */
    min-width: 300px;
    box-sizing: border-box;
}


    
    .ub-form-left {
        flex: 1;
        padding: 20px;
        border-right: 1px solid #eee;
        position: relative;
    }
    
    .ub-form-right {
        flex: 1;
        padding: 20px;
        background: #f8f9fa;
    }

    .ub-step-content {
        display: none;
        animation: fadeIn 0.3s ease;
    }
    
    .ub-step-content.ub-step-active {
        display: block;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateX(20px); }
        to { opacity: 1; transform: translateX(0); }
    }
    
    .ub-form-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 24px;
        color: #210233;
        padding-bottom: 12px;
        border-bottom: 2px solid #210233;
    }
    
    .ub-field-group {
        margin-bottom: 20px;
    }
    
    .ub-field-row {
        display: flex;
        gap: 12px;
    }
    
    .ub-field-half {
        flex: 1;
    }
    
    .ub-field-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #210233;
        font-size: 14px;
    }
    
    .ub-input, .ub-select {
        width: 100%;
        padding: 14px 12px;
        border: 2px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
        background: white;
        box-sizing: border-box;
        transition: all 0.3s ease;
    }
    
    .ub-input:focus, .ub-select:focus, .ub-input.ub-valid {
        outline: none;
        border-color: #00d4aa;
        box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
    }
    
    .ub-input.ub-error {
        border-color: #dc3545;
        box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
    }
    
    .ub-card-input-container {
        position: relative;
    }
    
.ub-card-multi-input {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

/* Estilo por defecto: 4 en fila */
.ub-card-multi-input .ub-input {
    flex: 1 1 60px;
    max-width: 80px;
    min-width: 60px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    box-sizing: border-box;
}



.ub-card-icon {
    position: absolute;
    right: 12px;
    width: 32px !important;
    height: 20px !important;
    top: 54% !important;
    object-fit: contain;
    z-index: 1;
    margin-top: 15px !important;
}   .ub-exp-container {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .ub-exp-container .ub-select {
        flex: 1;
    }
    
    .ub-exp-separator {
        font-weight: bold;
        color: #666;
        font-size: 18px;
    }
    
    .ub-checkbox-container {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-top: 20px;
        padding: 16px;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #ddd;
    }
    
    .ub-checkbox {
        margin: 0;
        margin-top: 2px;
        width: 18px;
        height: 18px;
        accent-color: #210233;
    }
    
    .ub-checkbox-label {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
        margin: 0;
    }
    
    .ub-terms-link {
        color: #210233;
        text-decoration: underline;
        font-weight: 600;
    }
    
    .ub-help-text {
        color: #666;
        font-size: 12px;
        margin-top: 4px;
        display: block;
    }
    
    .ub-error-msg {
        color: #dc3545;
        font-size: 12px;
        display: none;
        margin-top: 4px;
    }

    .ub-step-navigation {
        margin-top: 32px;
        display: flex;
        gap: 12px;
        justify-content: flex-end;
    }
    
    .ub-btn {
        padding: 14px 24px;
        border: none;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 140px;
    }
    
    .ub-btn-primary {
        background: #210233;
        color: white;
    }
    
    .ub-btn-primary:hover {
        background: #2d0749;
        transform: translateY(-1px);
    }
    
    .ub-btn-next {
        background: #00d4aa;
        color: white;
    }
    
    .ub-btn-next:hover {
        background: #00c199;
        transform: translateY(-1px);
    }
    
    .ub-btn-next:disabled {
        background: #ccc;
        cursor: not-allowed;
        transform: none;
    }
    
    .ub-btn-back {
        background:#210233;
        color: white;
    }
    
    .ub-btn-back:hover {
        background: #210233;
    }
    
    .ub-btn-secondary {
        background: #f8f9fa;
        color: #666;
        border: 1px solid #ddd;
    }
    
    .ub-btn-secondary:hover {
        background: #e9ecef;
    }
    
    .ub-info-section {
        height: 100%;
    }
    
    .ub-disclaimer {
        font-size: 12px;
        color: #210233;
        line-height: 1.5;
    }
    
    .ub-disclaimer h4 {
        color: #210233;
        margin-bottom: 12px;
        font-size: 16px;
    }
    
    .ub-disclaimer p {
        margin-bottom: 12px;
    }

 
    @media (max-width: 768px) {
        .ub-form-container {
            flex-direction: column;
        }
        
        .ub-form-left {
            border-right: none;
            border-bottom: 1px solid #eee;
        }
        
        .ub-field-row {
            flex-direction: column;
            gap: 16px;
        }
        
        .ub-amount {
            font-size: 28px;
        }
        
        .ub-progress-container {
            padding: 16px;
        }
        
        .ub-progress-line {
            width: 40px;
            margin: 0 12px;
        }
        
        .ub-step-text {
            display: none;
        }
        
        .ub-card-multi-input .ub-input {
            font-size: 15px;
            padding: 12px 8px;
        }
        
        .ub-step-navigation {
            flex-direction: column;
        }
        
        .ub-btn {
            width: 100%;
        }
    }
    
    @media (max-width: 480px) {
        .ub-payment-header, .ub-tabs-container, .ub-form-left, .ub-form-right, .ub-progress-container {
            padding: 16px;
        }
        
        .ub-amount {
            font-size: 24px;
        }
        
        .ub-tab {
            padding: 10px 15px;
            font-size: 14px;
            width: 80%;
            text-align: center;
        }
        
        .ub-form-title {
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .ub-field-group {
            margin-bottom: 18px;
        }
        
        .ub-input, .ub-select {
            padding: 16px 12px;
            font-size: 16px;
            min-height: 52px;
        }
        
        .ub-card-multi-input {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 8px;
            padding-right: 44px;
        }
        
        .ub-card-multi-input .ub-input {
            font-size: 18px;
            font-weight: 700;
            padding: 16px 8px;
            letter-spacing: 0.5px;
        }
        
    .ub-card-icon {
        width: 32px;
        height: 22px;
        right: -185px;
        max-width: 32px !important;
        max-height: 22px !important;
        top: -47px !important;
    }
        .ub-exp-container {
            gap: 12px;
        }
        
        .ub-checkbox-container {
            padding: 12px;
            gap: 10px;
        }
        
        .ub-checkbox {
            width: 18px;
            height: 18px;
        }
        
        .ub-disclaimer {
            font-size: 12px;
                min-width: 220px;
        }
        
       
        .ub-btn {
            padding: 16px 20px;
            font-size: 16px;
        }
    }
    
    @media (max-width: 360px) {
        .ub-payment-header, .ub-tabs-container, .ub-form-left, .ub-form-right, .ub-progress-container {
            padding: 12px;
        }
        
        .ub-card-multi-input {
            gap: 6px;
            padding-right: 40px;
        }
        
        .ub-card-multi-input .ub-input {
            font-size: 16px;
            padding: 14px 6px;
        }
        
        .ub-amount {
            font-size: 20px;
        }
    }
