.nequi-payment-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 288px;
    height: 40px;
    gap: 8px;
    padding: 10px 24px;
    background-color: #c82a7f;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nequi-logo {
    width: 40px;
    height: auto;
}

.nequi-payment-btn:hover {
    background-color: #c82a7f;
    color: #FFFFFF;

}

.nequi-payment-btn:disabled {
    background-color: #e6b2ce;
    cursor: not-allowed;
}

/* Contenedor del formulario */
#nequi-checkout-container {
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

/* Estilos del formulario */
#nequi-checkout {
    width: 100%;
}

.nequi-form-group {
    margin-bottom: 20px;
    width: 100%;
}

#nequi-checkout label {
    margin-bottom: 8px;
    gap: 8px;
    display: flex;
    align-items: center;
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-align: left;
    color: #000000;
    width: 100%;
}

#nequi-checkout input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Términos y condiciones */
.nequi-terms-container {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #eee;
    width: 100%;
}

.nequi-terms-label {
    display: flex;
    align-items: center;
    font-family: 'Raleway';
    font-size: 14px;
    cursor: pointer;
    width: 100%;
}

.nequi-terms-label input[type="checkbox"] {
    margin-right: 10px;
}

.nequi-terms-link {
    color: #c82a7f;
    text-decoration: underline;
    margin-left: 5px;
}

.nequi-terms-link:hover {
    color: #a52268;
}

.nequi-terms-content {
    margin-top: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 6px;
    border-left: 4px solid #c82a7f;
    width: 100%;
}

.nequi-terms-content h4 {
    color: #c82a7f;
    margin-bottom: 10px;
    font-family: 'Montserrat';
}

.nequi-terms-content ol {
    padding-left: 20px;
}

.nequi-terms-content li {
    margin-bottom: 8px;
    font-family: 'Raleway';
    font-size: 13px;
}

/* Botones */
.nequi-submit-btn,
.nequi-confirm-payment-btn {
    background-color: #c82a7f;
    color: #FFFFFF;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    text-align: center;
    text-transform: uppercase;
}

.nequi-submit-btn:hover:not(:disabled),
.nequi-confirm-payment-btn:hover:not(:disabled) {
    background-color: #a52268;
}

.nequi-submit-btn:disabled {
    background-color: #e6b2ce;
    cursor: not-allowed;
}

/* Estilos para los mensajes */
#nequi-result {
    width: 100%;
    margin-top: 20px;
    padding: 15px 0;
    border-radius: 4px;
    text-align: center;
}

.nequi-loading {
    color: #192B00;
    text-align: center;
    font-family: 'Raleway';
    font-weight: 500;
}

.nequi-success {
    color: #2e7d32;
    background-color: #e8f5e9;
    padding: 10px;
    border-radius: 4px;
    font-family: 'Raleway';
}

.nequi-error {
    color: #c62828;
    background-color: #ffebee;
    padding: 10px;
    border-radius: 4px;
    font-family: 'Raleway';
}

.nequi-disclaimer {
    width: 100%;
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-align: center;
    color: #000000;
    margin-top: 20px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    #nequi-checkout-container {
        padding: 15px;
        width: 100%;
        max-width: 288px;
    }

    .nequi-payment-btn {
        width: 288px;
    height: 40px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    #nequi-result{
        width: 100%;
    }
    
    .nequi-disclaimer{
        width: 100%;
        font-size: 12px;
    }
    
    .nequi-terms-content {
        font-size: 13.5px;
        padding: 10px;
    }
    
    .nequi-terms-content ol {
        padding-left: 15px;
    }
    .nequi-terms-text {
        font-size: 13.5px;
        margin-bottom: 11px;
    }
}
